diff --git a/RELEASE-NOTES b/RELEASE-NOTES index e4ba2d462..0cb488b3b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -19,7 +19,7 @@ Usage ----- When you first run Electron Cash it will use a different configuration directory to Electrum. On Unix it is -".electron-cash", and on Windows/MacOS it is "ElectronCash". Your wallet files will be copied from the Electrum +".electron-cash", and on Windows/MacOS it is "Vilight". Your wallet files will be copied from the Electrum cofiguration directory (".electrum" on unix, "Electrum" on Windows/MacOS), if found. Initially transactions will show up as unverified because Electron Cash is downloading the blockchain headers to verify the transactions. This can take up to 10 minutes, but is only done once. @@ -39,7 +39,7 @@ signs transactions using this scheme, so its transactions are only valid on the has occurred. If you want to send Bitcoin before the fork, or Segwitcoins after the fork, you should continue to use the standard -Electrum client, Electron Cash will not work. +Electrum client, ViLight will not work. Once the network forks, it will take time for the Electrum server network to split into servers of the Segwit fork, and servers of the Bitcoin Cash fork. You should ensure you are connected to a Bitcoin Cash Electrum server in order to @@ -57,7 +57,7 @@ Hardware Wallets Since Bitcoin Cash enforces a new signing scheme, hardware wallet vendors need to supply new firmware and/or libraries for the hardware to be able to sign transactions correctly. Currently such libraries and firmware do not exist, so you -cannot use your hardware wallets with Electron Cash. +cannot use your hardware wallets with Vilight. To use Electron Cash with your hardware-wallet coins you will need to restore your wallet as a software Electron Cash BIP44 wallet from its seed so that Electron Cash can sign the transactions itself. Since this exposes your coins to @@ -76,7 +76,7 @@ Multisig -------- For a multisig transaction to be valid on the Bitcoin Cash fork, each signature must be done thew new Bitcoin Cash way, -so each signature must be performed with Electron Cash or other Bitcoin Cash-compatible software. +so each signature must be performed with Vilight or other Bitcoin Cash-compatible software. Unfortunately Electron Cash does not currently work with multisig wallets as Electrum's serialization format for transferring transactions between cosigners is incomplete. We intend to fix this. @@ -182,7 +182,7 @@ and there is no warning message. # Release 3.3 -* Add external plugins feature. Please see https://github.com/Electron-Cash/Electron-Cash/blob/master/plugins/README.rst and pay special attention to the risks involved with running external plugins. +* Add external plugins feature. Please see https://github.com/VitaeTeam/ViLight/blob/master/plugins/README.rst and pay special attention to the risks involved with running external plugins. * Various bugfixes and improvements # Release 3.3.1 @@ -508,7 +508,7 @@ and there is no warning message. closer to that of a mini block explorer. (cculianu) * KeepKey: Fixed a packaging issue where loading BIP39 onto an uninitialized KeepKey would fail with a Python exception on Windows & Mac #1434 (cculianu) -* Python 3.6 is officially the minimum Python version for Electron Cash now. +* Python 3.6 is officially the minimum Python version for Vilight now. In the last version, you could still run on Python 3.5 (poorly), we just made it official. (Axel Gembe, cculianu) * Added OP_RETURN capability to the 'Receive' tab. You can now generate receive @@ -613,7 +613,7 @@ and there is no warning message. which causes EC to render fonts badly if using emojis or unicode) (cculianu) * AppImage: Upgrade to Ubuntu 16.04 as base #1489 (Axel Gembe) * Build: Protect against PGP keyserver poisoning attack #1487 (Axel Gembe) -* Added electroncash.se server to servers.json (Georg Engelman) +* Added vilight.se server to servers.json (Georg Engelman) * TxDialog: Allow various fields to be selected by mouse. (cculianu) * TxDialog: Added the "Mined in block" field to the dialog. (cculianu) * Localization: The app now defaults to the system language on Windows, Mac and diff --git a/android/Dockerfile b/android/Dockerfile index 87d36225d..d9976e1eb 100644 --- a/android/Dockerfile +++ b/android/Dockerfile @@ -25,7 +25,7 @@ RUN apt-get update && \ pip3 install polib requests COPY contrib/make_locale contrib/ COPY gui gui -COPY ios/ElectronCash/electroncash_gui/ios_native ios/ElectronCash/electroncash_gui/ios_native +COPY ios/Vilight/vilight_gui/ios_native ios/Vilight/vilight_gui/ios_native COPY plugins plugins # The app itself. Specifically check for the keystore, otherwise it'll build an APK with no diff --git a/android/app/build.gradle b/android/app/build.gradle index a4e2f5228..81785068e 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -46,7 +46,7 @@ android { install "-r", "$REPO_ROOT/contrib/deterministic-build/requirements.txt" install "-r", "$REPO_ROOT/contrib/deterministic-build/requirements-android.txt" } - extractPackages "electroncash.locale" + extractPackages "vilight.locale" } ndk { abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a" @@ -60,8 +60,8 @@ android { python { srcDir REPO_ROOT include "lib/**" // In ../.. (renamed below) - include("chaquopy/**", "electroncash_gui/**", // In src/main/python - "electroncash_plugins/**") // + include("chaquopy/**", "vilight_gui/**", // In src/main/python + "vilight_plugins/**") // exclude "**/*.po", "**/*.pot" } } @@ -126,7 +126,7 @@ afterEvaluate { def dstDir = task.destinationDir task.doLast { def src = "$dstDir/lib" - def dst = "$dstDir/electroncash" + def dst = "$dstDir/vilight" if (! file(src).renameTo(dst)) { throw new GradleException("Failed to rename $src to $dst") } diff --git a/android/app/generate_strings.py b/android/app/generate_strings.py index 088d1bea7..5bbf970f2 100644 --- a/android/app/generate_strings.py +++ b/android/app/generate_strings.py @@ -83,7 +83,7 @@ def main(): print(lang_region) if not lang_region=="__pycache__": lang, region = lang_region.split("_") - catalog = read_catalog(join(locale_dir, lang_region, "LC_MESSAGES","electron-cash.mo")) + catalog = read_catalog(join(locale_dir, lang_region, "LC_MESSAGES","vilight.mo")) lang_strings[lang].append((region, catalog)) src_strings = read_catalog(join(locale_dir, "messages.pot")) diff --git a/android/app/src/main/java/cc/vitae/vilight1/Daemon.kt b/android/app/src/main/java/cc/vitae/vilight1/Daemon.kt index db4759890..5d427832b 100644 --- a/android/app/src/main/java/cc/vitae/vilight1/Daemon.kt +++ b/android/app/src/main/java/cc/vitae/vilight1/Daemon.kt @@ -12,8 +12,8 @@ val py by lazy { Python.start(AndroidPlatform(app)) Python.getInstance() } -fun libMod(name: String) = py.getModule("electroncash.$name")!! -fun guiMod(name: String) = py.getModule("electroncash_gui.android.$name")!! +fun libMod(name: String) = py.getModule("vilight.$name")!! +fun guiMod(name: String) = py.getModule("vilight_gui.android.$name")!! val libNetworks by lazy { libMod("networks") } val guiDaemon by lazy { guiMod("daemon") } @@ -62,7 +62,7 @@ class DaemonModel { watchdog.run() } - // This function is called from src/main/python/electroncash_gui/android/daemon.py. + // This function is called from src/main/python/vilight_gui/android/daemon.py. // It will sometimes be called on the main thread and sometimes on the network thread. @Suppress("unused") fun onCallback(event: String) { diff --git a/android/app/src/main/java/cc/vitae/vilight1/Main.kt b/android/app/src/main/java/cc/vitae/vilight1/Main.kt index b5ffa8987..f36d5cecf 100644 --- a/android/app/src/main/java/cc/vitae/vilight1/Main.kt +++ b/android/app/src/main/java/cc/vitae/vilight1/Main.kt @@ -300,7 +300,7 @@ class MainActivity : AppCompatActivity() { ft.attach(newFrag) // BottomNavigationView onClick is sometimes triggered after state has been saved - // (https://github.com/Electron-Cash/Electron-Cash/issues/1091). + // (https://github.com/VitaeTeam/ViLight/issues/1091). ft.commitNowAllowingStateLoss() } diff --git a/android/app/src/main/python/electroncash_gui/android/console.py b/android/app/src/main/python/electroncash_gui/android/console.py index a650c107a..364ada16e 100644 --- a/android/app/src/main/python/electroncash_gui/android/console.py +++ b/android/app/src/main/python/electroncash_gui/android/console.py @@ -8,10 +8,10 @@ import pkg_resources import unittest -from electroncash import commands, daemon, keystore, simple_config, storage, util -from electroncash.i18n import _ -from electroncash.storage import WalletStorage -from electroncash.wallet import (ImportedAddressWallet, ImportedPrivkeyWallet, Standard_Wallet, +from vilight import commands, daemon, keystore, simple_config, storage, util +from vilight.i18n import _ +from vilight.storage import WalletStorage +from vilight.wallet import (ImportedAddressWallet, ImportedPrivkeyWallet, Standard_Wallet, Wallet) from android.preference import PreferenceManager @@ -192,7 +192,7 @@ def unit_test(self): """Run all unit tests. Expect failures with functionality not present on Android, such as Trezor. """ - test_pkg = "electroncash.tests" + test_pkg = "vilight.tests" suite = unittest.defaultTestLoader.loadTestsFromNames( [test_pkg + "." + filename[:-3] for filename in pkg_resources.resource_listdir(test_pkg, "") @@ -230,7 +230,7 @@ def _wallet_path(self, name=""): # We store the config in the SharedPreferences because it's very easy to base an Android # settings UI on that. The reverse approach would be harder (using PreferenceDataStore to make -# the settings UI access an Electron Cash config file). +# the settings UI access an Vilight config file). class AndroidConfig(simple_config.SimpleConfig): def __init__(self, app): self.sp = PreferenceManager.getDefaultSharedPreferences(app) diff --git a/android/app/src/main/python/electroncash_gui/android/strings.py b/android/app/src/main/python/electroncash_gui/android/strings.py index 09537032e..a561dc369 100644 --- a/android/app/src/main/python/electroncash_gui/android/strings.py +++ b/android/app/src/main/python/electroncash_gui/android/strings.py @@ -1,5 +1,5 @@ # This file lists translatable strings used in the Android app which don't appear anywhere else -# in the Electron Cash repository. Some of them only differ in capitalization or punctuation: +# in the Vilight repository. Some of them only differ in capitalization or punctuation: # see https://medium.com/@jsaito/making-a-case-for-letter-case-19d09f653c98 # If you change anything here, you need to rebuild the Android strings files by running the diff --git a/cc.vitae.ViLight.appdata.xml b/cc.vitae.ViLight.appdata.xml index 888a9bfe4..c3f45de27 100644 --- a/cc.vitae.ViLight.appdata.xml +++ b/cc.vitae.ViLight.appdata.xml @@ -14,16 +14,16 @@ https://github.com/vitaecrypto/Delight/issues?q=is%3Aissue - https://www.electroncash.org/images/shot4.png + https://www.https://www.vitaetoken.io//images/shot4.png Main application window electron-cash vilight - electroncash - electroncash_gui - electroncash_plugins + vilight + vilight_gui + vilight_plugins hello@vitae.cc diff --git a/contrib/build-linux/appimage/README.md b/contrib/build-linux/appimage/README.md index 8d033a06e..c526ba4fc 100644 --- a/contrib/build-linux/appimage/README.md +++ b/contrib/build-linux/appimage/README.md @@ -1,4 +1,4 @@ -AppImage binary for Electron Cash +AppImage binary for Vilight ============================ ✓ _This binary is reproducible: you should be able to generate @@ -48,4 +48,4 @@ folder. ## FAQ ### How can I see what is included in the AppImage? -Execute the binary as follows: `./Electron-Cash*.AppImage --appimage-extract` +Execute the binary as follows: `./Vilight*.AppImage --appimage-extract` diff --git a/contrib/build-linux/appimage/_build.sh b/contrib/build-linux/appimage/_build.sh index c3d0cf4d3..9d911cce7 100755 --- a/contrib/build-linux/appimage/_build.sh +++ b/contrib/build-linux/appimage/_build.sh @@ -118,7 +118,7 @@ info "Preparing electrum-locale" for i in ./locale/*; do dir="$PROJECT_ROOT/lib/$i/LC_MESSAGES" mkdir -p $dir - msgfmt --output-file="$dir/electron-cash.mo" "$i/electron-cash.po" || true + msgfmt --output-file="$dir/vilight.mo" "$i/vilight.po" || true done popd ) diff --git a/contrib/build-linux/appimage/scripts/test-fontconfig.py b/contrib/build-linux/appimage/scripts/test-fontconfig.py index bea35541e..be7c2f7dc 100644 --- a/contrib/build-linux/appimage/scripts/test-fontconfig.py +++ b/contrib/build-linux/appimage/scripts/test-fontconfig.py @@ -1,4 +1,4 @@ -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # Copyright (C) 2019 Calin Culianu # diff --git a/contrib/build-linux/appimage/scripts/test-freetype.py b/contrib/build-linux/appimage/scripts/test-freetype.py index 2f72f82e4..1e30b5258 100644 --- a/contrib/build-linux/appimage/scripts/test-freetype.py +++ b/contrib/build-linux/appimage/scripts/test-freetype.py @@ -1,4 +1,4 @@ -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/contrib/build-wine/_build.sh b/contrib/build-wine/_build.sh index 201a43fed..71cabb863 100755 --- a/contrib/build-wine/_build.sh +++ b/contrib/build-wine/_build.sh @@ -132,10 +132,10 @@ prepare_wine() { pushd "$here" here=`pwd` # Please update these carefully, some versions won't work under Wine - NSIS_URL='https://github.com/cculianu/Electron-Cash-Build-Tools/releases/download/v1.0/nsis-3.02.1-setup.exe' + NSIS_URL='https://github.com/VitaeTeam/Vilight-Build-Tools/releases/download/v1.0.1/nsis-3.02.1-setup.exe' NSIS_SHA256=736c9062a02e297e335f82252e648a883171c98e0d5120439f538c81d429552e - LIBUSB_URL='https://github.com/cculianu/Electron-Cash-Build-Tools/releases/download/v1.0/libusb-1.0.21.7z' + LIBUSB_URL='https://github.com/VitaeTeam/Vilight-Build-Tools/releases/download/v1.0.1/libusb-1.0.21.7z' LIBUSB_SHA256=acdde63a40b1477898aee6153f9d91d1a2e8a5d93f832ca8ab876498f3a6d2b8 PYINSTALLER_REPO='https://github.com/EchterAgo/pyinstaller.git' @@ -167,7 +167,7 @@ prepare_wine() { # if the verification fails you might need to get more keys from python.org # keys from https://www.python.org/downloads/#pubkeys info "Importing Python dev keyring (may take a few minutes)..." - KEYRING_PYTHON_DEV=keyring-electroncash-build-python-dev.gpg + KEYRING_PYTHON_DEV=keyring-vilight-build-python-dev.gpg gpg -v --no-default-keyring --keyring $KEYRING_PYTHON_DEV --import \ "$here"/pgp/7ed10b6531d7c8e1bc296021fc624643487034e5.asc \ || fail "Failed to import Python release signing keys" @@ -274,7 +274,7 @@ build_the_app() { for i in ./locale/*; do dir=$i/LC_MESSAGES mkdir -p $dir - msgfmt --output-file=$dir/electron-cash.mo $i/electron-cash.po || true + msgfmt --output-file=$dir/vilight.mo $i/vilight.po || true done popd diff --git a/contrib/build-wine/build.sh b/contrib/build-wine/build.sh index 43a9e72ae..098322ec3 100755 --- a/contrib/build-wine/build.sh +++ b/contrib/build-wine/build.sh @@ -42,7 +42,7 @@ if [ $(uname) = "Linux" ]; then fi info "Creating docker image ..." -$SUDO docker build -t electroncash-wine-builder-img contrib/build-wine/docker \ +$SUDO docker build -t vilight-wine-builder-img contrib/build-wine/docker \ || fail "Failed to create docker image" # This is the place where we checkout and put the exact revision we want to work @@ -65,11 +65,11 @@ FRESH_CLONE_DIR=$FRESH_CLONE/$GIT_DIR_NAME # just in case it needs to see it. $SUDO docker run -it \ -e GIT_REPO="$GIT_REPO" \ - --name electroncash-wine-builder-cont \ + --name vilight-wine-builder-cont \ -v $FRESH_CLONE_DIR:/opt/wine64/drive_c/vilight \ --rm \ --workdir /opt/wine64/drive_c/vilight/contrib/build-wine \ - electroncash-wine-builder-img \ + vilight-wine-builder-img \ ./_build.sh $REV ) || fail "Build inside docker container failed" diff --git a/contrib/build-wine/deterministic.spec b/contrib/build-wine/deterministic.spec index 34761c94d..00860a83c 100644 --- a/contrib/build-wine/deterministic.spec +++ b/contrib/build-wine/deterministic.spec @@ -43,13 +43,13 @@ binaries += [('C:/tmp/libzbar-0.dll', '.')] binaries += [b for b in collect_dynamic_libs('PyQt5') if 'qwindowsvista' in b[0]] datas = [ - (home+'lib/currencies.json', 'electroncash'), - (home+'lib/servers.json', 'electroncash'), - (home+'lib/servers_testnet.json', 'electroncash'), - (home+'lib/wordlist/english.txt', 'electroncash/wordlist'), - (home+'lib/locale', 'electroncash/locale'), - (home+'gui/qt/data/ecsupplemental_win.ttf', 'electroncash_gui/qt/data'), - (home+'plugins', 'electroncash_plugins'), + (home+'lib/currencies.json', 'vilight'), + (home+'lib/servers.json', 'vilight'), + (home+'lib/servers_testnet.json', 'vilight'), + (home+'lib/wordlist/english.txt', 'vilight/wordlist'), + (home+'lib/locale', 'vilight/locale'), + (home+'gui/qt/data/ecsupplemental_win.ttf', 'vilight_gui/qt/data'), + (home+'plugins', 'vilight_plugins'), ] datas += collect_data_files('trezorlib') datas += collect_data_files('btchip') @@ -171,4 +171,4 @@ coll = COLLECT( debug=False, icon=home+'icons/electron.ico', console=False, - name=os.path.join('dist', 'electroncash')) + name=os.path.join('dist', 'vilight')) diff --git a/contrib/build-wine/docker/README.md b/contrib/build-wine/docker/README.md index cb0518be5..945fa0e08 100644 --- a/contrib/build-wine/docker/README.md +++ b/contrib/build-wine/docker/README.md @@ -20,7 +20,7 @@ folder. 2. Build image ``` - $ sudo docker build -t electroncash-wine-builder-img contrib/build-wine/docker + $ sudo docker build -t vilight-wine-builder-img contrib/build-wine/docker ``` _Note 1:_ see [this](https://stackoverflow.com/a/40516974/7499128) if having dns problems @@ -37,8 +37,8 @@ folder. rm -rf $FRESH_CLONE && \ mkdir -p $FRESH_CLONE && \ cd $FRESH_CLONE && \ - git clone https://github.com/Electron-Cash/Electron-Cash && \ - cd Electron-Cash + git clone https://github.com/VitaeTeam/ViLight && \ + cd Vilight ``` And then build from this directory: @@ -46,17 +46,17 @@ folder. $ REV=4.0.0 # Replace this with whatever Electron Cash revision tag you want to build $ git checkout $REV $ sudo docker run -it \ - --name electroncash-wine-builder-cont \ - -v $PWD:/opt/wine64/drive_c/electroncash \ + --name vilight-wine-builder-cont \ + -v $PWD:/opt/wine64/drive_c/vilight \ --rm \ - --workdir /opt/wine64/drive_c/electroncash/contrib/build-wine \ - electroncash-wine-builder-img \ + --workdir /opt/wine64/drive_c/vilight/contrib/build-wine \ + vilight-wine-builder-img \ ./_build.sh $REV ``` _Note:_ If you are on a MacOS host, you should run the above command **without** `sudo`. -4. The generated binaries are in `./contrib/build-wine/dist` (relative to the `fresh_clone/Electron-Cash` directory you should find yourself in if you followed 1-3 above). +4. The generated binaries are in `./contrib/build-wine/dist` (relative to the `fresh_clone/Vilight` directory you should find yourself in if you followed 1-3 above). diff --git a/contrib/build-wine/electron-cash.nsi b/contrib/build-wine/electron-cash.nsi index da37f7e5c..1d586c3f0 100644 --- a/contrib/build-wine/electron-cash.nsi +++ b/contrib/build-wine/electron-cash.nsi @@ -113,7 +113,7 @@ Section Delete "$SMPROGRAMS\${PRODUCT_NAME}\*.*" ;Files to pack into the installer - File /r "dist\electroncash\*.*" + File /r "dist\vilight\*.*" File "..\..\icons\electron.ico" ;Store installation folder diff --git a/contrib/electrum-locale/locale/ar_SA/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/ar_SA/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/ar_SA/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/ar_SA/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/ar_SA/electron-cash.po b/contrib/electrum-locale/locale/ar_SA/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/ar_SA/electron-cash.po rename to contrib/electrum-locale/locale/ar_SA/vilight.po index 113d321ba..f7886253f 100644 --- a/contrib/electrum-locale/locale/ar_SA/electron-cash.po +++ b/contrib/electrum-locale/locale/ar_SA/vilight.po @@ -24,7 +24,7 @@ msgstr " (لا يوجد سعر صرف)" msgid " These settings affects the fields in the Send tab" msgstr " هذه الإعدادات تؤثر على الحقول في التبويب إرسال" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " نسخت إلى الحافظة" @@ -37,7 +37,7 @@ msgstr " {} وجدت" msgid "%2d minutes" msgstr "%2d دقائق" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d مكون(ات) صالحة" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "&عنوان لتحويله" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "و عناوين" @@ -293,7 +293,7 @@ msgstr "(نسخ قديمة من إلكترون كاش قبل 3.3.6 أنتجت م msgid "(Only deterministic wallets are supported)" msgstr "(المحافظ التعيينية Deterministic مدعومة فقط)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "(خرج المنصوصة)" @@ -325,7 +325,7 @@ msgstr "({} of {}):" msgid "+" msgstr "+" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "..." @@ -346,7 +346,7 @@ msgstr "١ساعة" msgid "1 week" msgstr "١أسبوع" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr ":" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "نسخة من ملف محفظتك أنشئ في" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "ستنشأ محفظة تعينينة باستخدام المفتاح الخاص الأساسي المقدم. ستتمكن هذه المحفظة من إرسال واستقبال بيتكوين كاش بحرية." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "ستنشأ محفظة تعينية باستخدام المفتاح العام المقدم. ستكون هذه محفظة للاطلاع فقط." @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "يتم إضافة رسوم للحوالة تلقائياً. تستطيع تغييرها. الرسوم المضافة تزيد حسب حجم الحوالة" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "محفظة تحمل نفس الاسم موجودة. رجاء أدخل اسم محفظة آخر للمتابعة." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "هناك محفظة بنفس الاسم، حاول مجددا." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "هناك محفظة بنفس الاسم، لا يمكن المتابعة." @@ -489,12 +489,12 @@ msgstr "أضف لوحة مفاتيح ظاهرية اختيارية لمربع ا msgid "Add cosigner" msgstr "أضف موقّعا" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "أضف محفظة جديدة" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "أضف إلى معارفي" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "إضافة {} من {} من العناوين الجديدة إلى المحفظة..." #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "رسوم اضافية" @@ -521,23 +521,23 @@ msgstr "كذلك، قد تكون عرضة لهجمات الوسيط MITM." #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "عنوان" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "محول العناوين" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "تفاصيل العنوان" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "العنوان مجمد" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "عنوان لتحويله" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "بعد تعطيل العبارات السرية، يمكنك ضم محفظة الكترون كاش هذه فقط إذا كانت عبارتها السرية فارغة. إن لم تكن عبارتها السرية فارغة، عليك إنشاء محفظة جديدة باستخدام مرشد التثبيت. يمكنك استخدام هذه المحفظة في أي وقت عند إعادة تفعيل العبارات السرية وإدخال عبارتها السرية." -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "الكل" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "كل المعاملات" @@ -603,11 +603,11 @@ msgstr "كل المعاملات" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "كل الاتصالات مع خادم السلسلة سترسل بلا تشفير." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "كل شيء معد وجاهز." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "منتهي الصلاحية مسبقا" @@ -619,11 +619,11 @@ msgstr "محدث مسبقا" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "القيمة" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "مقدار خرج OP_RETURN يجب أن يكون صفرا." #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "القيمة المستقبلة:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "القيمة المرسلة:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "القيمة المراد ارسالها" @@ -671,7 +671,7 @@ msgstr "حدث خطأ عند بث المعاملة" msgid "An uninitialized Digital Bitbox is detected." msgstr "عثر على Digital Bitbox غير مشغل." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "حدث خطأ غير معروف. تعذر المواصلة." @@ -683,7 +683,7 @@ msgstr "{} غير مسمى" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "أي" @@ -691,7 +691,7 @@ msgstr "أي" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "المظهر" @@ -718,7 +718,7 @@ msgstr "أمتأكد من رغبتك بالمواصلة؟" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "أمتأكد من رغبتك بإزالة الإضافة المحددة؟" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "أمتأكد من رغبتك بحذف أحد معارفك؟" @@ -738,7 +738,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "واثق، فضلا" @@ -796,19 +796,19 @@ msgstr "بذور BIP39 لا تحوي رقم إصدار، مما يصعب توا #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "بالرجوع" @@ -816,9 +816,9 @@ msgstr "بالرجوع" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "الرصيد" @@ -853,7 +853,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "وحدة القاعدة" @@ -865,7 +865,7 @@ msgstr "جزء اساسي من محفظتك." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -898,12 +898,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "بث" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "بث الإجراء..." @@ -919,7 +919,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -931,41 +931,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "إلغاء" @@ -990,7 +990,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -998,12 +998,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1016,16 +1016,16 @@ msgstr "" msgid "Cannot read file" msgstr "تعذر قراءة الملف" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1102,7 +1102,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1194,25 +1194,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1228,8 +1228,8 @@ msgstr "" msgid "Change Password" msgstr "تعديل كلمة المرور" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1265,7 +1265,7 @@ msgstr "يدفع الطفل للوالدة أو الوالدة" msgid "Child pays for parent" msgstr "يدفع الطفل للوالد" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1286,7 +1286,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "قم بإختيار كلمة مرور لتشفير مفاتيح محفظتك." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1325,8 +1325,8 @@ msgstr "اختر أي مستكشف إغلاق عبر الانترنت لإستخ msgid "Choose..." msgstr "اختر..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "مسح" @@ -1377,7 +1377,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1410,7 +1410,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1426,7 +1426,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1442,7 +1442,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1466,7 +1466,7 @@ msgstr "تأكيد المذكرات" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1478,7 +1478,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1551,13 +1551,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1578,34 +1578,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "قائمة العناوين" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1623,10 +1623,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1651,7 +1651,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1659,7 +1659,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1679,7 +1679,7 @@ msgstr "" msgid "Copy URI" msgstr "نسخ عنوان URL" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1687,7 +1687,7 @@ msgstr "" msgid "Copy and Close" msgstr "نسخ واغلاق" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1696,8 +1696,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "نسخ" @@ -1764,7 +1764,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1772,8 +1772,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1781,7 +1781,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1817,7 +1817,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1839,8 +1839,8 @@ msgstr "داكن/فاتح" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "تاريخ" @@ -1871,15 +1871,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "حذف" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1891,12 +1891,12 @@ msgstr "حذف الصوت؟" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1904,7 +1904,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1912,22 +1912,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "وصف" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "وصف للحوالة - ليس بخياري" #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "تفاصيل" @@ -1977,7 +1977,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1994,7 +1994,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "لا تخزنها الكترونياً." @@ -2026,24 +2026,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "هل تريد المتابعة؟" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2061,15 +2061,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2085,17 +2085,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "تحرير الرسوم يدوياً" @@ -2109,7 +2109,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2118,7 +2118,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2126,7 +2126,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2150,7 +2150,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2191,7 +2191,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2290,12 +2290,12 @@ msgstr "تشفير" msgid "Encrypt wallet file" msgstr "تشفير ملف المحفظة" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "تشفير/فك تشفير رسالة" @@ -2319,7 +2319,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2336,10 +2336,10 @@ msgid "Enter Passphrase" msgstr "ادخل العبارة السرية" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "أدخل كلمة المرور" @@ -2367,7 +2367,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "ادخل قائمة بالمخرجات في حقل ال(دفع الى)." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2399,11 +2399,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2435,7 +2435,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2466,17 +2466,17 @@ msgid "Enter your password or choose another file." msgstr "أدخل كلمة المرور أو إختر ملف أخر." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "الرجاء إدخال كلمة المرور للإستمرار" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2495,11 +2495,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "خطأ" @@ -2531,7 +2531,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2568,7 +2568,7 @@ msgstr "تصدير السجلات/التواريخ" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2581,7 +2581,7 @@ msgid "Extend this seed with custom words" msgstr "قم بإطالة هذه الكلمات المفتاحية مع كلمات معتادة" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2607,7 +2607,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "فشل تحديث كلمة المرور" @@ -2616,12 +2616,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "رسوم" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2639,27 +2639,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "الرسوم" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "أمر" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "النقود" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "ملف" @@ -2680,11 +2680,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "اتبع الفرع" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2719,8 +2719,8 @@ msgid "Format: address, amount" msgstr "الشكل: العنوان، الكمية" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2762,11 +2762,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2778,7 +2778,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2806,24 +2806,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2860,10 +2860,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "الارتفاع" @@ -2875,11 +2875,11 @@ msgstr "" msgid "Here is your master public key." msgstr "هذا هو مفتاحك العام الرئيسي" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2906,8 +2906,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "المضيف" @@ -2960,7 +2960,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2981,7 +2981,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3010,7 +3010,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3055,12 +3055,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3077,12 +3077,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3092,14 +3092,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "إستيراد" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3107,7 +3107,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3135,19 +3135,19 @@ msgstr "إستيراد المفاتيح الخاصة" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3201,8 +3201,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "معلومات" @@ -3230,8 +3230,8 @@ msgstr[4] "" msgstr[5] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3243,7 +3243,7 @@ msgstr "" msgid "Input raw transaction" msgstr "أدخل حوالة خامة" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "المدخلات" @@ -3265,8 +3265,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3278,25 +3278,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "عنوان غير مقبول" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "مبلغ غير صالح" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3329,9 +3329,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3340,7 +3340,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3352,7 +3352,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3372,7 +3372,7 @@ msgstr "" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3485,7 +3485,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3525,7 +3525,7 @@ msgstr "حمل الحوالة" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3578,12 +3578,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3599,16 +3599,16 @@ msgstr "المفاتيح العامة الرئيسية" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3645,7 +3645,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3657,7 +3657,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3681,15 +3681,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3699,12 +3699,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "إسم" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3717,11 +3717,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "شبكة" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3734,7 +3734,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "" @@ -3744,7 +3744,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3753,7 +3753,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3762,8 +3762,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "عنوان جديد" @@ -3771,19 +3771,19 @@ msgstr "عنوان جديد" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "جهة اتصال جديدة" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3792,21 +3792,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "التالي" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3814,7 +3814,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3830,15 +3830,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3846,7 +3846,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3875,7 +3875,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "لا رسالة أو قيمة" @@ -3884,16 +3884,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "لا مخرجات" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3905,25 +3905,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3931,7 +3931,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3953,8 +3953,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "عير متصل" @@ -4011,18 +4011,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "عدد الأصفار الظاهرة بعد الفاصلة. كمثال إذا وضع هذا لـ 2, \".1\" سوف تعرض كـ \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "قبول" @@ -4059,11 +4059,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "غير متصل" @@ -4098,13 +4098,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "متصفح الكتل الأونلاين" @@ -4132,11 +4132,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4156,12 +4156,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4174,12 +4174,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4188,8 +4188,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4208,7 +4208,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "المخرجات" @@ -4261,21 +4261,21 @@ msgstr "" msgid "Password" msgstr "كلمة المرور" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4290,7 +4290,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "كلمة المرور حدثت بنجاح" @@ -4298,7 +4298,7 @@ msgstr "كلمة المرور حدثت بنجاح" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4324,9 +4324,9 @@ msgid "Pay Now" msgstr "إدفع الآن" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "دفع لــ" @@ -4338,21 +4338,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "تم إرسال الحوالة." @@ -4381,7 +4381,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4413,7 +4413,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4447,19 +4447,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4480,7 +4480,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4493,7 +4493,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4517,8 +4517,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4536,7 +4536,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4569,7 +4569,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4577,7 +4577,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4606,7 +4606,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4614,14 +4614,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "مفتاح خاص" @@ -4638,7 +4638,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4683,7 +4683,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "مفتاح عام" @@ -4695,10 +4695,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4707,9 +4707,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR رمز" @@ -4737,7 +4737,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4783,8 +4783,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "استقبال" @@ -4797,13 +4797,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4811,7 +4811,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "إستقبال عناوين" @@ -4824,11 +4824,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4850,10 +4850,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "إزالة" @@ -4875,20 +4875,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4900,17 +4900,17 @@ msgstr "تبليغ عن علل" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4926,7 +4926,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "القيمة المطلوبة" @@ -4934,8 +4934,8 @@ msgstr "القيمة المطلوبة" msgid "Requestor" msgstr "الطالب" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4968,8 +4968,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5013,13 +5013,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "حفظ" @@ -5027,8 +5027,8 @@ msgstr "حفظ" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5044,7 +5044,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5073,7 +5073,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5091,11 +5091,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5108,8 +5108,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "بذرة" @@ -5117,7 +5117,7 @@ msgstr "بذرة" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5177,7 +5177,7 @@ msgstr "" msgid "Select server manually" msgstr "تحديد خادم يدويا" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5202,9 +5202,9 @@ msgid "Select your transaction file" msgstr "حدد ملف حوالاتك" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "أرسل" @@ -5236,7 +5236,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5249,7 +5249,7 @@ msgstr "خادم" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5270,7 +5270,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5306,46 +5306,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "إعدادات" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5353,20 +5353,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5382,14 +5382,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5402,11 +5402,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5481,7 +5481,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "بتوقيع" @@ -5489,12 +5489,12 @@ msgstr "بتوقيع" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "توقيع/توثيق رسالة" @@ -5507,7 +5507,7 @@ msgid "Signature" msgstr "ختم التوقيع" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "التوقيع متحقق منه" @@ -5528,17 +5528,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5552,12 +5552,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5566,11 +5566,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5583,11 +5583,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5603,20 +5603,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5640,7 +5640,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5655,15 +5655,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "الحالة" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5672,10 +5672,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "نجح" @@ -5703,13 +5703,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "جاري المزامنة..." @@ -5721,27 +5721,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5771,18 +5771,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5803,10 +5803,10 @@ msgstr "يمكن تحديد مقدار الرسوم من قبل المرسل، msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5857,7 +5857,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5866,11 +5866,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5922,20 +5922,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5947,7 +5947,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5963,7 +5963,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6038,7 +6038,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6064,11 +6064,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6101,17 +6101,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6120,7 +6120,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6129,12 +6129,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6142,14 +6142,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "هذه البذرة ستمكنك من استعادة محفظتك في حالة تعطل حاسوبك." @@ -6165,7 +6165,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6175,7 +6175,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6188,7 +6188,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6196,16 +6196,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "المحفظة ليس لها بذرة" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6244,30 +6244,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6287,9 +6287,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6313,7 +6313,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6321,25 +6321,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "حوالة" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6348,20 +6348,20 @@ msgid "Transaction ID" msgstr "رقم تعريف الحوالة" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "رقم تعريف الحوالة:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6377,7 +6377,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6390,8 +6390,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6404,9 +6404,9 @@ msgid "Transaction:" msgstr "حوالة:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "" @@ -6427,11 +6427,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6440,8 +6440,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6465,7 +6465,7 @@ msgstr "غير ممكن إنشاء CSV" msgid "Unable to export history" msgstr "غير ممكن تصدير التواريخ" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6521,8 +6521,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6548,16 +6548,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6565,7 +6565,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6573,7 +6573,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6585,7 +6585,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6605,7 +6605,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6637,12 +6637,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6651,18 +6651,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "أستخدم ميزة عناوين عوائد الحوالة" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6678,24 +6678,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6728,7 +6728,7 @@ msgstr "" msgid "Verify" msgstr "تأكيد" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6790,11 +6790,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "رؤية من متصفح الكتل" @@ -6810,7 +6810,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6819,7 +6819,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "تحذير" @@ -6847,22 +6847,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6870,11 +6870,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6890,15 +6890,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6906,7 +6906,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6914,7 +6914,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6945,11 +6945,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6998,32 +6998,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7033,7 +7033,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7050,11 +7050,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7074,7 +7074,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7082,11 +7082,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7098,11 +7098,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7129,7 +7129,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7149,7 +7149,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7157,7 +7157,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7178,13 +7178,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7205,7 +7205,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7221,7 +7221,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7234,7 +7234,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7243,12 +7243,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "بذرتك مهمة!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7261,7 +7261,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7270,12 +7270,12 @@ msgid "Your wallet history has been successfully exported." msgstr "تاريخ محفظتك تم تصديره بنجاح." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7288,7 +7288,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7349,7 +7349,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7358,8 +7358,8 @@ msgid "are frozen" msgstr "هي مجمدة" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7367,8 +7367,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7380,7 +7380,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7396,7 +7396,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7421,7 +7421,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "الرجاء الإنتظار..." @@ -7456,15 +7456,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "غير معروف" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7485,7 +7485,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "مشاهدة فقط" @@ -7493,7 +7493,7 @@ msgstr "مشاهدة فقط" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7566,15 +7566,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7582,7 +7582,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7590,11 +7590,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7606,23 +7606,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/bg_BG/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/bg_BG/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/bg_BG/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/bg_BG/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/bg_BG/electron-cash.po b/contrib/electrum-locale/locale/bg_BG/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/bg_BG/electron-cash.po rename to contrib/electrum-locale/locale/bg_BG/vilight.po index 0e3bddc3a..d11d8c86e 100644 --- a/contrib/electrum-locale/locale/bg_BG/electron-cash.po +++ b/contrib/electrum-locale/locale/bg_BG/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d минути" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Адреса" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 час" msgid "1 week" msgstr "1 седмица" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Създадено беше копие на ваш портфейл" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Предложената такса ще бъде автоматично прибавена към това поле. Можете да я отмените. Предложената такса нараства с размера на транзакцията." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Допълнителни такси" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Адрес" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Всичко" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Сума" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Получена сума:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Изпратена сума:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Сума за изпращане" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Изглед" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Обратно" @@ -815,9 +815,9 @@ msgstr "Обратно" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Баланс" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Основна единица" @@ -864,7 +864,7 @@ msgstr "Основната единица на вашия портфейл." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Излъчване" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Излъчване на транзакция..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Отказ" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Промяна" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "Смяна на ПИН кода" msgid "Change Password" msgstr "Промяна на парола" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "Изберете парола за шифриране на ключовете на портфейла ви." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Изберете кой онлайн блок-експлорер да с msgid "Choose..." msgstr "Изберете..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Изчистване" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "Кон&зола" msgid "Con&tacts" msgstr "Кон&такти" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "Потвърдете сийд" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Контакти" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Копиране на URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "Копиране и затваряне" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Копиране в системния буфер" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "Създаване" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "Тъмна/светла" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Дата" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Изтриване" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Описание" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Описание на транзакцията (незадължително)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Подробности" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Не го съхранявай електронно." @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Искате ли да продължите?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Шифриране" msgid "Encrypt wallet file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Шифриране/дешифриране на съобщение" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Въведете тайната фраза" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Въведете парола" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Въведете списък с изходи в полето \"Плащане към\"." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Въведете паролата си, за да продължите" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Грешка" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "История на експортирането" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Неуспешна промяна на парола" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Такса" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Такси" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Файл" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "Формат: адрес, сума" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Височина" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Това е вашият главен публичен ключ." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "Начален екран" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Хост" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Импортиране" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Импортиране на частни ключове" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Информация" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Внасяне на необработена транзакция" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Входове" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Недостатъчно средства" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Невалиден адрес" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Невалидна сума" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "Отчети" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "Зареждане на транзакция" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "Главни публични ключове" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Име" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Мрежа" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Никога" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Нов контакт" @@ -3766,19 +3766,19 @@ msgstr "Нов контакт" msgid "New Password:" msgstr "Нова парола:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Нов контакт" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Напред" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "Не" @@ -3809,7 +3809,7 @@ msgstr "Не" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Няма съобщение или сума" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "Няма повече адреси в портфейла ви." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Няма изходящи" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3926,7 +3926,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Няма връзка" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Брой нули след десетичния знак. Например: ако зададете 2, \"1.\" ще бъде показвано \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "ОК" @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Офлайн" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Онлайн блок-експлорер" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Изходящи" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "Парола" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Сложност на паролата" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Паролата беше успешно променена" @@ -4285,7 +4285,7 @@ msgstr "Паролата беше успешно променена" msgid "Password:" msgstr "Парола:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "Платете сега" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Плащане към" @@ -4325,21 +4325,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Заявките за плащане са изтекли" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Плащането е изпратено." @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "Моля, въведете главният публичен ключ (x msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Почакайте" @@ -4523,7 +4523,7 @@ msgstr "Почакайте..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Порт" @@ -4564,7 +4564,7 @@ msgstr "Порт" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4601,14 +4601,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "Частен ключ" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Частен ключ" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Публичен ключ" @@ -4682,10 +4682,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR код" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "Въпрос" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Получаване" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Адрес за получаване" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Премахване" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "Докладване на грешки" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4913,7 +4913,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Заявена сума" @@ -4921,8 +4921,8 @@ msgstr "Заявена сума" msgid "Requestor" msgstr "Заявител" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Запазване" @@ -5014,8 +5014,8 @@ msgstr "Запазване" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Сийд" @@ -5104,7 +5104,7 @@ msgstr "Сийд" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "" msgid "Select server manually" msgstr "Изберете сървър ръчно" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "Изберете вашият файл за транзакцията" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Изпращане" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "Сървър" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Настройки" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Показване" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "Показване на QR код" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Показване като QR код" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Подпис" @@ -5476,12 +5476,12 @@ msgstr "Подпис" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Подписване/потвърждаване на съобщение" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "Подпис" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Подписът е потвърден" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Големина:" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "Съжаляваме!" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Източник" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Състояние" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Състояние:" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Успешно" @@ -5690,13 +5690,13 @@ msgstr "Усвояване на частни ключове" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Синхронизиране..." @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "Сумата за таксата може да се реши от изп msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Сумата ще бъде показана в червено ако нямате достатъчно средства в портфейла си." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Този портфейл е само за наблюдение" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6129,14 +6129,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Този сийд ще ви позволи да възстановите вашият портфейл в случай на сриване на компютъра ви." @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Тази транзакция не е записана. Желаете ли да затворите?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Този портфейл няма сийд" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "За да сте сигурни, че правилно сте съхранили вашият сийд, моля препишете го тук." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "Общ размер" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Транзакция" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "ID на транзакция" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID на транзакция:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Транзакция без връзка с вашият портфейл" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "Транзакция:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Транзакция" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "Невъзможно създаване на csv" msgid "Unable to export history" msgstr "Невъзможно експортиране на историята" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Неизвестно" @@ -6552,7 +6552,7 @@ msgstr "Неизвестно" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Използване на адреси за ресто" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "Употребявано" @@ -6702,7 +6702,7 @@ msgstr "Използването на адреси за ресто затруд msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "Потвърждаване" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Преглед в блок-експлорера" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "ВНИМАНИЕ" @@ -6826,22 +6826,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6926,11 +6926,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6979,32 +6979,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "Да" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7014,7 +7014,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7031,11 +7031,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7055,7 +7055,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7063,11 +7063,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7079,11 +7079,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7110,7 +7110,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7130,7 +7130,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7138,7 +7138,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7159,13 +7159,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7186,7 +7186,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7202,7 +7202,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7215,7 +7215,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7224,12 +7224,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Вашият сийд е важен!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7242,7 +7242,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7251,12 +7251,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Историята на вашият портфейл беше успешно експортирана." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7269,7 +7269,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Нули след десетичната точка" @@ -7330,7 +7330,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7339,8 +7339,8 @@ msgid "are frozen" msgstr "са замразени" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7348,8 +7348,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7361,7 +7361,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7377,7 +7377,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7402,7 +7402,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "моля изчакайте..." @@ -7437,15 +7437,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "неизвестен" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7466,7 +7466,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "само за наблюдение" @@ -7474,7 +7474,7 @@ msgstr "само за наблюдение" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7539,15 +7539,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7555,7 +7555,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7563,11 +7563,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7579,23 +7579,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/cs_CZ/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/cs_CZ/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/cs_CZ/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/cs_CZ/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/cs_CZ/electron-cash.po b/contrib/electrum-locale/locale/cs_CZ/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/cs_CZ/electron-cash.po rename to contrib/electrum-locale/locale/cs_CZ/vilight.po index 9d5ae5934..4c02bee08 100644 --- a/contrib/electrum-locale/locale/cs_CZ/electron-cash.po +++ b/contrib/electrum-locale/locale/cs_CZ/vilight.po @@ -24,7 +24,7 @@ msgstr " (Žádný kurz k dispozici)" msgid " These settings affects the fields in the Send tab" msgstr " Tato nastavení ovlivňují pole v okně pro odeslání" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " zkopírováno do schránky" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d minut" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "platné položky %d" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Adresy" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "+" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "..." @@ -346,7 +346,7 @@ msgstr "1 hodina" msgid "1 week" msgstr "1 týden" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr ":" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Kopie peněženky byla vytvořena v" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Navrhovaný poplatek je automaticky vložen do tohoto políčka. Můžete ho přepsat. Výše navrhovaného poplatku se zvyšuje v závislosti na velikosti transakce." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "Peněženka s tímto názvem již existuje. Zadejte jiný název peněženky pro pokračování." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "Peněženka s tímto názvem již existuje, prosím zkuste to znovu." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "Peněženka s tímto názvem již existuje. Nelze pokračovat." @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "Přidat do kontaktů" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Dodatečné poplatky" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adresa" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "Detaily adres" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Vše" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "Všechny transakce" @@ -603,11 +603,11 @@ msgstr "Všechny transakce" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "Vše nastaveno a připraveno k chodu." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "Již vypršela platnost" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Částka" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Obdržená částka:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Odeslaná částka:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Částka k odeslání" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "Došlo k neznámé chybě. Nelze pokračovat." @@ -683,7 +683,7 @@ msgstr "Bez názvu {}" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Vzhled" @@ -717,7 +717,7 @@ msgstr "Skutečně si přejete pokračovat?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "Jste si jistý, že chcete odinstalovat vybraný plugin?" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "Audio MODEM" msgid "Audio Modem Settings" msgstr "Nastavení zvuku modemu" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "Ověřit, prosím" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Zpět" @@ -815,9 +815,9 @@ msgstr "Zpět" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Zůstatek" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Základní jednotka" @@ -864,7 +864,7 @@ msgstr "Základní jednotka vaší peněženky." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Zveřejnit" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Zveřejňování transakce..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Zrušit" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "Zrušeno uživatelem" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "Nelze odstranit aktivní peněženku" @@ -997,12 +997,12 @@ msgstr "Nelze odstranit aktivní peněženku" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "Nemohu najít python knihovnu pro" msgid "Cannot read file" msgstr "Nelze přečíst soubor" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Změnit" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "Zmenit adresu" @@ -1227,8 +1227,8 @@ msgstr "Změnit PIN kód" msgid "Change Password" msgstr "Změnit heslo" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "Dítě zaplatí za rodiče" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "Vyberte adresu" @@ -1285,7 +1285,7 @@ msgstr "Vyberte záložní soubor:" msgid "Choose a password to encrypt your wallet keys." msgstr "Zadejte heslo pro zašifrování svých klíčů k peněžence." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "Zvolte adresu nebo zadejte veřejný klíč" @@ -1324,8 +1324,8 @@ msgstr "Vyberte online průzkumník bloků k používání pro funkce, které ot msgid "Choose..." msgstr "Vyberte..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Vymazat" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "Info o coinu" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "Mince" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "Připravujeme" @@ -1441,7 +1441,7 @@ msgstr "Konzole" msgid "Con&tacts" msgstr "Kon&takty" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "Potvrdit odstranění" @@ -1465,7 +1465,7 @@ msgstr "Potvrdit seed-semínko" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "Kontakt" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "Kontaktní informace" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "Kontakt přidán" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "Kontakt byl uložen" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Kontakty" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "Kopírovat adresu" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "Kopírovat script" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Kopírovat URL" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "Kopírovat a zavřít" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Zkopírovat do schránky" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "Vytvořit" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "Vytvořit nový Seed" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "Tmavý/světlý" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Datum" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Smazat" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "Odstranit peněženku" @@ -1890,12 +1890,12 @@ msgstr "Smazat fakturu?" msgid "Delete wallet file?" msgstr "Odstranit složku s peněženkou?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Popis" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Popis transakce (není povinné)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detaily" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "Vypnuto" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Neuchovávejte jej v elektronické podobě." @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Opravdu chcete pokračovat?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "Upravit kontakt" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Upravit poplatky manuálně" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Šifrovat" msgid "Encrypt wallet file" msgstr "Zašifrovat soubor peněženky" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Šifrovat/dešifrovat zprávu" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Zadejte heslovací frázi" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Zadejte heslo" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Zadejte seznam výstupů do pole 'Komu'." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "Zadejte Vaše heslo nebo zvolte jiný soubor." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Pro pokračování zadejte své heslo" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Chyba" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "Exit ViLight" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Exportovat Historii" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "Exportovat peněženku..." @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "Rozšířit tento seed-semínko o vlastní slova" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Aktualizace hesla se nezdařila" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Poplatek" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Poplatky" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Fiat" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Fiat měny" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Soubor" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Následovat tuto větev" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "Formát: adresa, částka" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "Generování Vaší adresy..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "Generování peněženky..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "Get Started" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Výška" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Zde je váš hlavní veřejný klíč." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Hostitel" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "Obrázek" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importovat" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "Import Bitcoinových adres" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Importovat soukromý klíč" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Informace" @@ -3227,8 +3227,8 @@ msgstr[2] "" msgstr[3] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Zadejte částku" @@ -3240,7 +3240,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Zadejte raw transakci transakci" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Vstupy" @@ -3262,8 +3262,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Nedostatek finančních prostředků" @@ -3275,25 +3275,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "Neplatné" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Neplatná adresa" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Neplatná částka" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "Neplatná Vitae adresa." @@ -3326,9 +3326,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "Neplatný QR kód" @@ -3337,7 +3337,7 @@ msgid "Invalid amount" msgstr "Neplatná částka" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "Neplatná vitae URI:" @@ -3349,7 +3349,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "Nesprávné přihlašovací údaje. Zkuste to prosím znovu." @@ -3369,7 +3369,7 @@ msgstr "Faktury" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3482,7 +3482,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3522,7 +3522,7 @@ msgstr "Nahrát transakci" msgid "Loading backup..." msgstr "Načítání zálohy..." -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3575,12 +3575,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "Ruční poplatek" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3596,16 +3596,16 @@ msgstr "Hlavní veřejné klíče" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Maximum" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Maximální poplatek překročen" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "Maximální pevný poplatek" @@ -3642,7 +3642,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Poplatek za těžbu" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3678,15 +3678,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "Vaše přijímací adresa" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3696,12 +3696,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Jméno" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "Název nebyl vyplněn" @@ -3714,11 +3714,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Síť" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "Síťové nastavení" @@ -3731,7 +3731,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Nikdy" @@ -3741,7 +3741,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Nikdy nevyzrazujte svůj seed-semínko." @@ -3750,7 +3750,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Nikdy ho nezadávejte na žádné webové stránce." @@ -3759,8 +3759,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Nový kontakt" @@ -3768,19 +3768,19 @@ msgstr "Nový kontakt" msgid "New Password:" msgstr "Nové heslo:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "Nová peněženka vytvořena" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Nový kontakt" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3789,21 +3789,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Další" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "Ne" @@ -3811,7 +3811,7 @@ msgstr "Ne" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "Žádná shoda" @@ -3827,15 +3827,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Žádná peněženka" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3843,7 +3843,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3872,7 +3872,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Žádná zpráva nebo částka" @@ -3881,16 +3881,16 @@ msgid "No more addresses in your wallet." msgstr "Žádné další adresy ve Vaší peněžence." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Žádné výstupy" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3902,25 +3902,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "Žádné transakce" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "Na blokové řadě nebyly nalezeny žádné transakce." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Žádný" @@ -3928,7 +3928,7 @@ msgstr "Žádný" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3950,8 +3950,8 @@ msgstr "Není textový soubor" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Nepřipojeno" @@ -4008,18 +4008,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Počet nul zobrazených za desetinnou čárkou. Například, pokud je nastaveno na 2, \"1.\" bude zobrazeno jako \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "Ok" @@ -4054,11 +4054,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Offline" @@ -4093,13 +4093,13 @@ msgstr "" msgid "One output per line." msgstr "Jeden zápis na řádek." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "Online" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Online Průzkumník bloků" @@ -4127,11 +4127,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "Otevřít novou peněženku" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "Otevřít peněženku" @@ -4151,12 +4151,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "OpenAlias záznam, používán k obdržení mincí a k podepsání vyžádané platby." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4169,12 +4169,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Možnosti" @@ -4183,8 +4183,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4201,7 +4201,7 @@ msgstr "Výstupní částka" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Výstupy" @@ -4254,21 +4254,21 @@ msgstr "" msgid "Password" msgstr "Heslo" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "Nesprávné heslo" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Síla hesla" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Heslo není použito, tato peněženka není chráněna" @@ -4283,7 +4283,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Heslo bylo úspěšně aktualizováno" @@ -4291,7 +4291,7 @@ msgstr "Heslo bylo úspěšně aktualizováno" msgid "Password:" msgstr "Heslo:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4317,9 +4317,9 @@ msgid "Pay Now" msgstr "Zaplatit nyní" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Komu" @@ -4331,21 +4331,21 @@ msgstr "Hromadná platba" msgid "Payment Request" msgstr "Žádost o platbu" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Požadavek platby vypršel" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Platba odeslána." @@ -4374,7 +4374,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4406,7 +4406,7 @@ msgstr "Prosím, zadejte hlavní veřejný klíč (xpub) Vašeho spolupodepisova msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4440,19 +4440,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4473,7 +4473,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4486,7 +4486,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Prosím sdílejte se svými spolupodepisovateli." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4510,8 +4510,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Chvíli strpení" @@ -4529,7 +4529,7 @@ msgstr "Chvíli strpení..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4562,7 +4562,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4570,7 +4570,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4599,7 +4599,7 @@ msgstr "Stiskněte 'Další' pro otevření této peněženky." msgid "Press Enter" msgstr "Stiskněte Enter" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Náhled" @@ -4607,14 +4607,14 @@ msgstr "Náhled" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "Soukromý klíč" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Soukromý klíč" @@ -4631,7 +4631,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Pokračovat?" @@ -4676,7 +4676,7 @@ msgid "Proxy user" msgstr "Uživatel serveru proxy" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Veřejný klíč" @@ -4688,10 +4688,10 @@ msgstr "Veřejné klíče" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4700,9 +4700,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR kód" @@ -4730,7 +4730,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "Otázka" @@ -4776,8 +4776,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Příjem" @@ -4790,13 +4790,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "Přijímací adresa" @@ -4804,7 +4804,7 @@ msgstr "Přijímací adresa" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Přijímací adresa" @@ -4817,11 +4817,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Načíst Script" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4843,10 +4843,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Odstranit" @@ -4868,20 +4868,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "Přejmenovat" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "Přejmenovat peněženku" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "Zpráva odeslána" @@ -4893,17 +4893,17 @@ msgstr "Hlášení chyb" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Požadavek vyprší" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4919,7 +4919,7 @@ msgstr "Žádost odeslána." msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Požadovaná částka" @@ -4927,8 +4927,8 @@ msgstr "Požadovaná částka" msgid "Requestor" msgstr "Žadatel" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Požadavky" @@ -4961,8 +4961,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5006,13 +5006,13 @@ msgstr "SSL certifikát použitý k podepsání platebních požadavků." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "Satoshi Nakamoto" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Uložit" @@ -5020,8 +5020,8 @@ msgstr "Uložit" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5037,7 +5037,7 @@ msgstr "Uložit fakturu do souboru" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5066,7 +5066,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5084,11 +5084,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5101,8 +5101,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Seed-semínko" @@ -5110,7 +5110,7 @@ msgstr "Seed-semínko" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5170,7 +5170,7 @@ msgstr "Vybrat server automaticky" msgid "Select server manually" msgstr "Vyberte server manuálně" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5195,9 +5195,9 @@ msgid "Select your transaction file" msgstr "Vyberte soubor Vaší transakce" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Odeslat" @@ -5229,7 +5229,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5242,7 +5242,7 @@ msgstr "Server" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5263,7 +5263,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5299,46 +5299,46 @@ msgstr "Nastavit PIN" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Nastavení" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "Požadavek na sdílení" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "Požadavek na sdílení" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Zobrazit" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "Zobrazit všechny transakce" @@ -5346,20 +5346,20 @@ msgstr "Zobrazit všechny transakce" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5375,14 +5375,14 @@ msgstr "" msgid "Show QR Code" msgstr "Zobrazit QR kód" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Zobrazit jako QR kód" @@ -5395,11 +5395,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Zobrazit historické sazby" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5474,7 +5474,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Podepsat" @@ -5482,12 +5482,12 @@ msgstr "Podepsat" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Podepsat/ověřit správu" @@ -5500,7 +5500,7 @@ msgid "Signature" msgstr "Podpis" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Podpis ověřen" @@ -5521,17 +5521,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Podepisování transakce..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Velikost:" @@ -5545,12 +5545,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "Promiňte!" @@ -5559,11 +5559,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Zdroj" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5576,11 +5576,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5596,20 +5596,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Utratit pouze ověřené mince" @@ -5633,7 +5633,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5648,15 +5648,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Stav" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Stav:" @@ -5665,10 +5665,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Hotovo" @@ -5696,13 +5696,13 @@ msgstr "Sweep soukromé klíče" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "Synchronizuji" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Synchronizuji..." @@ -5714,27 +5714,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "Peněženka TREZOR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "Stisknutím přidat popis" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "Text zkopírován do schránky" @@ -5764,18 +5764,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5796,10 +5796,10 @@ msgstr "Výši poplatku si může zvolit odesílatel libovolně. Nicméně trans msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Zůstatek bude zobrazen červeně, pokud nebude dostatek prostředků v peněžence." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5850,7 +5850,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5859,11 +5859,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5915,20 +5915,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5940,7 +5940,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5956,7 +5956,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6031,7 +6031,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6057,11 +6057,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Tento blockchain se používá k ověření transakcí zaslaných Vaším transakčním serverem." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6094,17 +6094,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Toto je peněženka pouze pro prohlížení" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "Toto je peněženka pouze pro prohlížení." @@ -6113,7 +6113,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Toto je výše Vaší lokální kopie blockchainu." @@ -6122,12 +6122,12 @@ msgid "This may result in higher transactions fees." msgstr "Toto může způsobit navýšení poplatku za transakci." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Tento platební požadavek bude podepsán." @@ -6135,14 +6135,14 @@ msgstr "Tento platební požadavek bude podepsán." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "Tato žádost vyprší: {}" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Tento seed-semínko umožní obnovit Vaši peněženku v případě selhání počítače." @@ -6158,7 +6158,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6168,7 +6168,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6181,7 +6181,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Tato transakce není uložena, opravdu chcete ukončit?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6189,16 +6189,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Tato peněženka nemá žádný seed-semínko" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6237,30 +6237,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Pro ověření, že jste si správně uložili svůj seed-semínko, napište jej sem ještě jednou." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6280,9 +6280,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6306,7 +6306,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6314,25 +6314,25 @@ msgstr "" msgid "Total size" msgstr "Celková velikost" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transakce" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "Historie transakcí" @@ -6341,20 +6341,20 @@ msgid "Transaction ID" msgstr "ID Transakce" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID Transakce:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6370,7 +6370,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6383,8 +6383,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transakce nesouvisí s Vaší peněženkou" @@ -6397,9 +6397,9 @@ msgid "Transaction:" msgstr "Transakce:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transakce" @@ -6420,11 +6420,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6433,8 +6433,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6458,7 +6458,7 @@ msgstr "Nelze vytvořit csv" msgid "Unable to export history" msgstr "Nelze exportovat historii" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6514,8 +6514,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "Rozmrazit" @@ -6541,16 +6541,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Neznámý" @@ -6558,7 +6558,7 @@ msgstr "Neznámý" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "Nepodepsáno" @@ -6566,7 +6566,7 @@ msgstr "Nepodepsáno" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6578,7 +6578,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "Nepoužívano" @@ -6598,7 +6598,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6630,12 +6630,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Použít Tor proxy" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6644,18 +6644,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Použít jako server" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Používat změnové adresy" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Použít několik adres pro změny" @@ -6671,24 +6671,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Použít setconfig k nastavení ssl_chain a ssl_privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Použijte tento dialog pro přidání hesla do Vaší peněženky." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Použijte tento dialog pro změnu hesla." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6708,7 +6708,7 @@ msgstr "Měněním adres je pro ostatní obtížné dohledat Vaše transakce." msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "Platný" @@ -6721,7 +6721,7 @@ msgstr "" msgid "Verify" msgstr "Ověřit" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "Ověřit zprávu" @@ -6779,11 +6779,11 @@ msgstr "Zobrazit fakturu" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Zobrazit v průzkumníku bloků" @@ -6799,7 +6799,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6808,7 +6808,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "VAROVÁNÍ" @@ -6836,22 +6836,22 @@ msgstr "Peněženka" msgid "Wallet Information" msgstr "Údaje peněženky" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6859,11 +6859,11 @@ msgstr "" msgid "Wallet backup created" msgstr "Záloha peněženky vytvořena" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6879,15 +6879,15 @@ msgstr "" msgid "Wallet name" msgstr "Název peněženky" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6895,7 +6895,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "Peněženka úspěšně přejmenovaná" @@ -6903,7 +6903,7 @@ msgstr "Peněženka úspěšně přejmenovaná" msgid "Wallet type" msgstr "Typ peněženky" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "Peněženky" @@ -6936,11 +6936,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6989,32 +6989,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "Chybný klíč" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Nesprávný podpis" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "Ano" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7024,7 +7024,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Sledujete následující větev" @@ -7041,11 +7041,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7065,7 +7065,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7073,11 +7073,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7089,11 +7089,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7120,7 +7120,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7140,7 +7140,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7148,7 +7148,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7169,13 +7169,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "Vaše účty byly přesunuty" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Vaše bitcoiny jsou chráněny heslem. Nicméně, Váš soubor peněženky není zašifrován." @@ -7196,7 +7196,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7212,7 +7212,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7225,7 +7225,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "Rozšíření Vašeho seedu-semínka je" @@ -7234,12 +7234,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Váš seed-semínko je důležité!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Váš server je ve větvi" @@ -7252,7 +7252,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Seed-semínko Vaší peněženky je:" @@ -7261,12 +7261,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Historie Vaší peněženky byla úspěšně exportována." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Vaše peněženka není chráněna." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Vaše peněženka je chráněna a zašifrována." @@ -7279,7 +7279,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Nuly za desetinnou čárkou" @@ -7340,7 +7340,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7349,8 +7349,8 @@ msgid "are frozen" msgstr "jsou zmražené" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "bloky" @@ -7358,8 +7358,8 @@ msgstr "bloky" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "potvrzení" @@ -7371,7 +7371,7 @@ msgstr "spolupodepisovatel" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7387,7 +7387,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7412,7 +7412,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "Čekejte prosím..." @@ -7447,15 +7447,15 @@ msgstr "nepotvrzeno" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "neznámé" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7476,7 +7476,7 @@ msgid "unverified" msgstr "neověřený" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "jen pro prohlížení" @@ -7484,7 +7484,7 @@ msgstr "jen pro prohlížení" msgid "wiped" msgstr "vymazáno" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7553,15 +7553,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "%@ dní" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7569,7 +7569,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "hodin" @@ -7577,11 +7577,11 @@ msgstr "hodin" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7593,23 +7593,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/da_DK/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/da_DK/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/da_DK/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/da_DK/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/da_DK/electron-cash.po b/contrib/electrum-locale/locale/da_DK/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/da_DK/electron-cash.po rename to contrib/electrum-locale/locale/da_DK/vilight.po index e9435145c..5cd4685a2 100644 --- a/contrib/electrum-locale/locale/da_DK/electron-cash.po +++ b/contrib/electrum-locale/locale/da_DK/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr " Disse indstillinger har indflydelse på felterne i Send-fanebladet" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " kopieret til udklipsholder" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d minutter" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d gyldig element(er)" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Adresser" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 time" msgid "1 week" msgstr "1 uge" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "En kopi af din tegnebogsfil blev oprettet i" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Et foreslået gebyr er automatisk blevet tilføjet til dette felt. Du kan overskrive det. Det foreslåede gebyr forøger transaktionens størrelse." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adresse" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Beløb" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Beløb modtaget:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Beløb sendt:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Udseende" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "" @@ -815,9 +815,9 @@ msgstr "" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Saldo" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Baseenhed" @@ -864,7 +864,7 @@ msgstr "Din tegnebogs baseenhed." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Rundsend" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "" @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Annullér" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "Skift adgangskode" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Vælg hvilken online blokudforsker, der skal bruges til funktioner, som msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Nulstil" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "Kon&sol" msgid "Con&tacts" msgstr "Kon&takter" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Kontakter" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Kopiér URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Kopiér til udklipsholder" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Dato" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Slet" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Beskrivelse" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Beskrivelse af transaktionen (ikke obligatorisk)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detaljer" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Kryptér" msgid "Encrypt wallet file" msgstr "Kryptér tegnebogsfil" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Kryptér/afkryptér besked" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Indtast adgangskode" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Fejl" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Eksportér historik" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Opdatering af adgangskode mislykkedes" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Gebyr" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Gebyrer" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Fiat-valuta" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Fil" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importér" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Importér private nøgler" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Input rå transaktion" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Ikke nok dækning" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Ugyldig adresse" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Ugyldigt beløb" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "Fakturaer" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "Indlæs overførsel" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "Offentlige hovednøgler" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Navn" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Netværk" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Aldrig" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Ny kontakt" @@ -3766,19 +3766,19 @@ msgstr "Ny kontakt" msgid "New Password:" msgstr "Ny adgangskode:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Ny kontakt" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Næste" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3809,7 +3809,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Ingen besked eller beløb" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "Ikke flere adresser i din tegnebog." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Ingen outputs" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3926,7 +3926,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Ikke forbundet" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Antallet af nuller, der vises efter decimaltegnet. Hvis dette for eksempel er sat til 2, vil \"1.\" blive vist som \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "O.k." @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Online blokudforsker" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "Adgangskode" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Adgangskodens styrke" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Adgangskoden blev opdateret problemfrit" @@ -4285,7 +4285,7 @@ msgstr "Adgangskoden blev opdateret problemfrit" msgid "Password:" msgstr "Adgangskode:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "Betal nu" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Betal til" @@ -4325,21 +4325,21 @@ msgstr "Betal til mange" msgid "Payment Request" msgstr "Betalingsanmodning" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Betalingsanmodning er udløbet" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Betaling sendt." @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4523,7 +4523,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4564,7 +4564,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Forhåndsvisning" @@ -4601,14 +4601,14 @@ msgstr "Forhåndsvisning" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Privat nøgle" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Offentlig nøgle" @@ -4682,10 +4682,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR-kode" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Modtag" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Modtagelsesadresse" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Fjern" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "Rapportering af programfejl" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Anmodning udløber" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4913,7 +4913,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Anmodet beløb" @@ -4921,8 +4921,8 @@ msgstr "Anmodet beløb" msgid "Requestor" msgstr "Anmoder" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Anmodninger" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Gem" @@ -5014,8 +5014,8 @@ msgstr "Gem" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5104,7 +5104,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "Vælg server automatisk" msgid "Select server manually" msgstr "Vælg server manuelt" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "Vælg din overførselsfil" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Opsætning" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Vis" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "Vis QR-kode" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Vis som QR-kode" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Signér" @@ -5476,12 +5476,12 @@ msgstr "Signér" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Signér/verificér besked" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "Signatur" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Signatur verificeret" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Kilde" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Succes" @@ -5690,13 +5690,13 @@ msgstr "Ryd private nøgler" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Synkroniserer …" @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "Størrelsen på gebyret kan frit bestemmes af afsenderen. Overførsler m msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Beløbet vil være rødt, hvis du ikke har nok pengemidler i din tegnebog." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Dette er en kigge-tegnebog" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6129,14 +6129,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Dette seed vil lade dig genskabe din tegnebog, hvis din computer går i stykker." @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Denne overførsel er ikke gemt. Vil du lukke alligevel?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Denne tegnebog har intet seed" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Tast dit seed igen her for at være sikker på, at du har gemt det rigtigt." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Overførsel" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "Overførsels-ID" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "Overførsels-ID:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Overførslen er ikke relateret til din tegnebog" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "Overførsel:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transaktioner" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "Kunne ikke oprette CSV" msgid "Unable to export history" msgstr "Kunne ikke eksportere historik" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Ukendt" @@ -6552,7 +6552,7 @@ msgstr "Ukendt" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Brug byttepengeadresser" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Brug adskillige byttepengeadresser" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6702,7 +6702,7 @@ msgstr "Brug af byttepengeadresser gør det mere besværligt for andre at spore msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "Verificér" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Vis på blokudforsker" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "ADVARSEL" @@ -6826,22 +6826,22 @@ msgstr "Tegnebog" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6926,11 +6926,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6979,32 +6979,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7014,7 +7014,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7031,11 +7031,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7055,7 +7055,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7063,11 +7063,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7079,11 +7079,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7110,7 +7110,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7130,7 +7130,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7138,7 +7138,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7159,13 +7159,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7186,7 +7186,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7202,7 +7202,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7215,7 +7215,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7224,12 +7224,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Dit seed er vigtigt!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7242,7 +7242,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7251,12 +7251,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Din tegnebogshistorik er problemfrit blevet eksporteret." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7269,7 +7269,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Nuller efter decimaltegn" @@ -7330,7 +7330,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7339,8 +7339,8 @@ msgid "are frozen" msgstr "er indefrosset" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7348,8 +7348,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7361,7 +7361,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7377,7 +7377,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7402,7 +7402,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "vent venligst …" @@ -7437,15 +7437,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "ukendt" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7466,7 +7466,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "kun kigge" @@ -7474,7 +7474,7 @@ msgstr "kun kigge" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7539,15 +7539,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7555,7 +7555,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7563,11 +7563,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7579,23 +7579,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/de_DE/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/de_DE/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/de_DE/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/de_DE/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/de_DE/electron-cash.po b/contrib/electrum-locale/locale/de_DE/vilight.po similarity index 83% rename from contrib/electrum-locale/locale/de_DE/electron-cash.po rename to contrib/electrum-locale/locale/de_DE/vilight.po index 5d4c2e446..cf8d54a57 100644 --- a/contrib/electrum-locale/locale/de_DE/electron-cash.po +++ b/contrib/electrum-locale/locale/de_DE/vilight.po @@ -24,7 +24,7 @@ msgstr " (Wechselkurs nicht verfügbar)" msgid " These settings affects the fields in the Send tab" msgstr " Diese Einstellungen beeinflussen die Felder im Senden-Tab" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " in die Zwischenablage kopiert" @@ -37,7 +37,7 @@ msgstr " {} gefunden" msgid "%2d minutes" msgstr "%2d Minuten" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d gültige Einträge" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "Zu konvertierende &Adresse" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Adressen" @@ -293,7 +293,7 @@ msgstr "(Alte Versionen von ViLight vor 3.3.6 haben ungültige Testnet-Geldbörs msgid "(Only deterministic wallets are supported)" msgstr "(Nur deterministische Geldbörsen werden unterstützt)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "(Skript-Ausgabe)" @@ -325,7 +325,7 @@ msgstr "({} von {}):" msgid "+" msgstr "+" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "..." @@ -346,7 +346,7 @@ msgstr "1 Stunde" msgid "1 week" msgstr "1 Woche" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr ":" @@ -389,11 +389,11 @@ msgstr "Ein Kontakt mit dem Namen {contact.name} existiert bereits mit der gleic msgid "A copy of your wallet file was created in" msgstr "Eine Kopie ihrer Geldbörse wurde angelegt unter" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "Anhand des vorhandenen privaten Generalschlüssels wird nun eine deterministische Geldbörse erstellt. Hiermit wird es möglich sein Vitae zu senden und zu empfangen." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "Anhand des vorhandenen öffentlichen Generalschlüssels wird nun eine deterministische Geldbörse erstellt. Diese Geldbörse ist dann im Beobachtungsmodus." @@ -425,15 +425,15 @@ msgstr "Ein benötigtes Qt-Modul, QtSvg wurde nicht gefunden. Bitte installieren msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Eine empfohlene Gebühr wird diesem Feld automatisch hinzugefügt, kann aber überschrieben werden. Die empfohlene Gebühr steigt mit der Größe der Transaktion." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "Eine Geldbörse mit diesem Namen existiert bereits. Bitte gebe einen anderen Namen ein um fortzufahren." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "Eine Geldbörse mit diesem Namen existiert bereits. Bitte versuche es noch einmal." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "Ein Geldbörse mit diesem Namen existiert bereits. Der Prozess kann nicht fortgesetzt werden." @@ -489,12 +489,12 @@ msgstr "Eine optionale Bildschirmtastatur zum Passwortdialog hinzufügen." msgid "Add cosigner" msgstr "Mitsignierer hinzufügen" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "Neue Geldbörse hinzufügen" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "Zu Kontakten hinzufügen" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "Füge {} von {} neuen Adressen der Geldbörse hinzu..." #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Weitere Gebühren" @@ -521,23 +521,23 @@ msgstr "Zusätzlich können Sie auch anfällig für Man-in-the-Middle-Angriffe s #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adresse" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "Adresskonverter" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "Adressdetails" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "Adresse ist eingefroren" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "Adresse ist nicht in dieser Börse." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "Zu konvertierende Adresse" @@ -585,17 +585,17 @@ msgstr "Erweitert" #: gui/qt/main_window.py:4923 msgid "After at least 1 confirmation, you will be able to use your new Vitae ID, and it will be visible in ViLight in the Addresses tab." -msgstr "Nach mindestens 1 Bestätigungkönnen Sie Ihr neues Cash-Accountverwenden und es wird in Electron-Cash im Tab Adressen sichtbar sein." +msgstr "Nach mindestens 1 Bestätigungkönnen Sie Ihr neues Cash-Accountverwenden und es wird in Vilight im Tab Adressen sichtbar sein." #: plugins/keepkey/qt.py:385 plugins/trezor/qt.py:351 msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "Nachdem das Passwort deaktiviert wurde, kann die Electrum-Cash-Geldbörse nur verbunden werden, wenn das Passwort leer war. Wenn das nicht der Fall ist, muss eine neue Geldbörse über den Assistenten erstellt werden. Falls das Passwort wieder aktiviert wird, kann diese Geldbörse wieder verwendet werden." -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Alle" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "Alle Transaktionen" @@ -603,11 +603,11 @@ msgstr "Alle Transaktionen" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "All Ihr Traffic wird unverschlüsselt an die Blockchain Server gesendet." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "Alles fertig und bereit." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "Bereits abgelaufen" @@ -619,11 +619,11 @@ msgstr "Bereits auf dem neuesten Stand" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Betrag" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "Der Betrag für die OP_RETURN Ausgabe muss Null sein." #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Betrag erhalten:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Betrag gesendet:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Zu sendender Betrag" @@ -671,7 +671,7 @@ msgstr "Fehler beim Senden der Transaktion" msgid "An uninitialized Digital Bitbox is detected." msgstr "Eine nicht initialisierte Digital Bitbox wurde erkannt." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "Ein unbekannter Fehler ist aufgetreten. Kann nicht fortfahren." @@ -683,7 +683,7 @@ msgstr "{} (Unbenannt)" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "Jede" @@ -691,7 +691,7 @@ msgstr "Jede" msgid "App-Global Options" msgstr "App-Globale Optionen" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Darstellung" @@ -718,7 +718,7 @@ msgstr "Wollen Sie wirklich fortfahren?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "Sind Sie sicher, dass Sie das ausgewählte Plugin löschen möchten?" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "Bist du sicher, dass Sie diesen Kontakt löschen wollen?" @@ -738,7 +738,7 @@ msgstr "Audio MODEM" msgid "Audio Modem Settings" msgstr "Audio-Modem Einstellungen" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "Bitte authentifizieren" @@ -796,19 +796,19 @@ msgstr "BIP39-Seeds enthalten keine Versionsnummer, was die Kompatibilität mit #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Zurück" @@ -816,9 +816,9 @@ msgstr "Zurück" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Guthaben" @@ -854,7 +854,7 @@ msgstr "Sperren treten normalerweise auf, wenn andere Mischer ungültige Eingabe "Sie können gelegentlich in seltenen Fällen passieren. Wenn dies jedoch geschieht, kontaktieren Sie bitte die Entwickler und melden Sie einen Fehlerbericht." #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Basiseinheit" @@ -866,7 +866,7 @@ msgstr "Basiseinheit der Geldbörse." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "Bevor Sie einen Fehler melden, aktualisieren Sie ViLight (aktuelle Version oder git HEAD) und teilen Sie uns die Versionsnummer im Fehlerbericht mit." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "Biometrische Funktionen nicht verfügbar" @@ -899,12 +899,12 @@ msgid "Both Receiving & Change (x2)" msgstr "Empfang & Wechsel (x2)" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Senden" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Sende Transaktion..." @@ -920,7 +920,7 @@ msgstr "CPFP nicht länger gültig" msgid "CSV" msgstr "CSV" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "Berechne Tx Details..." @@ -932,41 +932,41 @@ msgstr "Netzwerk kann nicht verwendet werden, CashShuffle wird deaktiviert." #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Abbrechen" @@ -991,7 +991,7 @@ msgstr "Abbrechen..." msgid "Cancelled by user" msgstr "Durch Benutzer abgebrochen" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "Die derzeit aktive Geldbörse kann nicht gelöscht werden" @@ -999,13 +999,13 @@ msgstr "Die derzeit aktive Geldbörse kann nicht gelöscht werden" msgid "Cannot add this cosigner:" msgstr "Mitsignierer konnte nicht hinzugefügt werden:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "Die angeforderte Transaktion kann nicht angezeigt werden, da keine Geldbörse geöffnet ist.\n\n" "Öffnen Sie eine Geldbörse und versuchen es erneut." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "Die angeforderte Transaktion kann nicht angezeigt werden, da Sie bereits einen modalen Dialog geöffnet haben.\n\n" @@ -1019,16 +1019,16 @@ msgstr "Python-Bibliothek nicht gefunden:" msgid "Cannot read file" msgstr "Datei konnte nicht gelesen werden" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "Kann keine neuen Transaktionen senden/empfangen." #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "Nachrichten können mit diesem Adresstyp nicht signiert werden." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "Private Schlüssel und Adressen in derselben Geldbörse können nicht angegeben werden. Adressen führen zu einer Geldbörse im Beobachtungsmodus und private Schlüssel zu einer Geldbörse von der ausgegeben werden kann. Entfernen Sie inkompatible Elemente (indem Sie sie nach Links wischen)." @@ -1105,7 +1105,7 @@ msgstr "Cash-Accounts Registrierung: '{name}' -> {address}" msgid "Cash Address" msgstr "Cash Adresse" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "Cash Adresse" @@ -1113,7 +1113,7 @@ msgstr "Cash Adresse" msgid "CashAddr" msgstr "CashAddr" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "CashAddr Adressformat" @@ -1197,25 +1197,25 @@ msgid "Chain fork(s) detected" msgstr "Chain-Fork(s) erkannt" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "Chain-Split in Block %d erkannt" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Wechselgeld" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "Wechselgeld Adresse" @@ -1231,8 +1231,8 @@ msgstr "PIN ändern" msgid "Change Password" msgstr "Password ändern" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "Passwort ändern oder festlegen" @@ -1268,7 +1268,7 @@ msgstr "Child-Pays-For-Parent" msgid "Child pays for parent" msgstr "Child-Pays-For-Parent" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "Adresse auswählen" @@ -1290,7 +1290,7 @@ msgstr "Sicherungs-Datei auswählen:" msgid "Choose a password to encrypt your wallet keys." msgstr "Wählen Sie ein Passwort um die Geldbörsenschlüssel zu verschlüsseln." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "Wählen Sie eine Adresse aus oder geben Sie einen öffentlichen Schlüssel ein" @@ -1332,8 +1332,8 @@ msgstr "Wählen Sie einen Blockexplorer für Web-Funktionen" msgid "Choose..." msgstr "Auswählen..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Löschen" @@ -1384,7 +1384,7 @@ msgstr "Coin" msgid "Coin & Address are frozen" msgstr "Coin & Adresse werden eingefroren" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "Coin Info" @@ -1417,7 +1417,7 @@ msgid "Coinbase not supported" msgstr "Coinbase nicht unterstützt" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "Coins" @@ -1433,7 +1433,7 @@ msgstr "Coins (UTXOs) bis zu diesem Betrag werden für das Mischen ausgewählt." msgid "Color theme" msgstr "Farbschema" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "Demnächst verfügbar" @@ -1449,7 +1449,7 @@ msgstr "Kon&sole" msgid "Con&tacts" msgstr "Kon&takte" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "Löschen bestätigen" @@ -1473,7 +1473,7 @@ msgstr "Seed bestätigen" msgid "Confirm Seed Extension" msgstr "Seed-Erweiterung bestätigen" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "Senden bestätigen" @@ -1485,7 +1485,7 @@ msgstr "Umschalten der Passphrase bestätigen" msgid "Confirm Transaction on your {}..." msgstr "Bestätigen Sie die Transaktion auf Ihrem {}..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "Geldbörsen-Passwort bestätigen" @@ -1558,13 +1558,13 @@ msgid "Connected" msgstr "Verbunden" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "Verbundene Knoten" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "Mit %d Knoten verbunden." @@ -1585,34 +1585,34 @@ msgstr "Verbindungsfehler" msgid "Connections" msgstr "Verbindungen" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "Kontakt" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "Kontaktinformationen" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "Kontakt hinzugefügt" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "Kontakt gespeichert" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Kontakte" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "Verwalten Sie Ihre eigenen privaten Schlüssel" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "Konvertieren zwischen altem und CashAddr Formaten" @@ -1630,10 +1630,10 @@ msgid "Copy {cash_account_name}" msgstr "{cash_account_name} kopieren" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "Adresse kopieren" @@ -1658,7 +1658,7 @@ msgstr "Prevout kopieren" msgid "Copy Public Key" msgstr "Öffentlichen Schlüssel kopieren" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "Öffentlichen Schlüssel kopieren" @@ -1666,7 +1666,7 @@ msgstr "Öffentlichen Schlüssel kopieren" msgid "Copy QR Image" msgstr "QR-Bild kopieren" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "Skript kopieren" @@ -1686,7 +1686,7 @@ msgstr "Ausgewählten Text kopieren" msgid "Copy URI" msgstr "URI kopieren" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "UTXO kopieren" @@ -1694,7 +1694,7 @@ msgstr "UTXO kopieren" msgid "Copy and Close" msgstr "Kopieren und Schließen" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "Eingabehash kopieren" @@ -1703,8 +1703,8 @@ msgid "Copy link" msgstr "Link kopieren" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "In Zwischenablage kopieren" @@ -1771,7 +1771,7 @@ msgstr "Nachricht konnte nicht signiert werden" msgid "Could not sign message." msgstr "Nachricht konnte nicht signiert werden." -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "Absturzberichter" @@ -1779,8 +1779,8 @@ msgstr "Absturzberichter" msgid "Create" msgstr "Erstellen" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "Neue Standard-Geldbörse erstellen" @@ -1788,7 +1788,7 @@ msgstr "Neue Standard-Geldbörse erstellen" msgid "Create a new seed" msgstr "Neuen Seed erstellen" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "Geldbörse mit einem Master Key erstellen" @@ -1824,7 +1824,7 @@ msgstr "Angepasster Gebührensatz in Satoshis pro Byte" msgid "Custom rate: " msgstr "Angepasster Betrag: " -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "Daemon wurde nicht ausgeführt." @@ -1846,8 +1846,8 @@ msgstr "Dunkel/Hell" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Datum" @@ -1878,15 +1878,15 @@ msgstr "Standard" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Löschen" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "Geldbörse löschen" @@ -1898,12 +1898,12 @@ msgstr "Rechnung löschen?" msgid "Delete wallet file?" msgstr "Geldbörsendatei löschen?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "Ableitung" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "Ableitung ungültig" @@ -1911,7 +1911,7 @@ msgstr "Ableitung ungültig" msgid "Derivation for {} wallet" msgstr "Ableitung für {} Geldbörse" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "Adressen werden abgeleitet..." @@ -1919,22 +1919,22 @@ msgstr "Adressen werden abgeleitet..." #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Beschreibung" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Beschreibung der Transaktion (optional)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Details" @@ -1984,7 +1984,7 @@ msgstr "Passphrasen deaktivieren" msgid "Disabled" msgstr "Deaktiviert" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "Speicherplatz niedrig" @@ -2001,7 +2001,7 @@ msgid "Do not pair" msgstr "Nicht verbinden" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Speichern Sie ihn nicht elektronisch." @@ -2033,7 +2033,7 @@ msgstr "Möchten Sie diesen Bericht absenden?" msgid "Do you wish to continue?" msgstr "Wollen Sie fortfahren?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" @@ -2041,13 +2041,13 @@ msgstr "Möchten Sie dem\n" "{}@{}\n" "Zweig folgen?" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "Möchten Sie das Download-Fortschritts-Banner ausblenden?\n" "(Sie können es später in den Einstellungen wieder aktivieren)" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" @@ -2055,7 +2055,7 @@ msgstr "Möchten Sie\n" "{}:{}\n" "als Blockchain-Server verwenden?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2075,15 +2075,15 @@ msgstr "Fertig" msgid "Download input data" msgstr "Eingabedaten herunterladen" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "Header herunterladen" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "Lade Blockchain-Header runter..." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "Lade Header runter {}% ..." @@ -2099,17 +2099,17 @@ msgstr "Aufgrund potenzieller Sicherheitsrisiken können Sie SSL nur deaktiviere msgid "ENABLED" msgstr "AKTIVIERT" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "Sichern Sie Ihre Geldbörse mit einem mnemonischen Seed-Satz." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "Kontakt bearbeiten" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Transaktionsgebühren manuell bearbeiten" @@ -2124,7 +2124,7 @@ msgid "ViLight cannot pair with your {}.\n\n" msgstr "ViLight konnte sich nicht mit Ihrem {} verbinden.\n\n" "Bevor Sie Bitcoins an diese Geldbörse senden, versichern Sie sich, dass Sie das Gerät verbinden können oder die Seed-Worte (und eine eventuelle Passphrase) besitzen. Ansonsten können Sie keine Bitcoins ausgeben." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "ViLight kann nicht fortfahren, da dieses Gerät sehr wenigen freien Festplattenplatz hat. Bitte machen Sie mehr Speicherplatz frei und versuchen es erneut." @@ -2133,15 +2133,15 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "ViLight kommunizert mit Servern, um Informationen über Ihre Adressen sowie Ihre Transaktionen zu erhalten. Alle Server dienen dem gleichen Zweck. In den meisten Fällen ist es einfacher, ViLight zufällig einen Server wählen zu lassen. Sie haben aber auch die Möglichkeit manuell einen von Ihnen bevorzugten Server zu wählen." #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "ViLight verbindet sich mit mehreren Knoten, um die Blockheader zu laden und die längste Blockchain aufzuspüren." #: gui/qt/cashacctqt.py:398 msgid "ViLight currently only supports Vitae ID types 1 & 2" -msgstr "Electron-Cash unterstützt derzeit nur Cash-Account-Typen 1 & 2" +msgstr "Vilight" unterstützt derzeit nur Cash-Account-Typen 1 & 2" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "ViLight ist eine SPV-Geldbörse für Vitae" @@ -2164,20 +2164,20 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" "Please upgrade otherwise you may experience font rendering issues with emojis and other unicode characters used by ViLight." msgstr "ViLight auf Linux benötigt PyQt5 5.12+.\n\n" "Sie haben Version {version_string} installiert.\n\n" -"Bitte aktualisieren Sie dies, sonst können Probleme mit dem Rendering von Schriftarten und anderen Unicode-Zeichen, die von Electron-Cash verwendet werden, auftreten." +"Bitte aktualisieren Sie dies, sonst können Probleme mit dem Rendering von Schriftarten und anderen Unicode-Zeichen, die von Vilight verwendet werden, auftreten." #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "ViLight sendet Ihre Adressen an einen einzelnen Server, um Ihren Transaktionsverlauf zu empfangen." #: gui/qt/installwizard.py:178 msgid "ViLight wallet" -msgstr "Electron-Cash-Geldbörse" +msgstr "Vilight"-Geldbörse" #: gui/qt/main_window.py:540 msgid "ViLight was unable to copy your wallet file to the specified location." -msgstr "Electron-Cash konnte die Geldbörsendatei nicht in das angegebene Verzeichnis kopieren." +msgstr "Vilight" konnte die Geldbörsendatei nicht in das angegebene Verzeichnis kopieren." #: gui/qt/main_window.py:3247 gui/qt/main_window.py:3256 msgid "ViLight was unable to deserialize the transaction:" @@ -2208,7 +2208,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "ViLight konnte die Transaktionsdatei nicht öffnen" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "ViLight konnte Ihre Transaktion nicht verarbeiten" @@ -2222,7 +2222,7 @@ msgstr "ViLight konnte den Transaktionsverlauf nicht exportieren." #: gui/qt/main_window.py:704 msgid "ViLight's focus is speed, with low resource usage and simplifying Vitae. You do not need to perform regular backups, because your wallet can be recovered from a secret phrase that you can memorize or write on paper. Startup times are instant because it operates in conjunction with high-performance servers that handle the most complicated parts of the Vitae system." -msgstr "Electron-Cash legt Wert auf Geschwindigkeit, Effizienz und Einfachheit. Es müssen keine regelmäßigen Backups angelegt werden, denn Ihre Geldbörse kann jederzeit durch den Seed (oder der zugehörigen Phrase) wiederhergestellt werden, welcher sich einfach ausdrucken oder aufschreiben lässt. Electron-Cash startet sofort, da es mit leistungsfähigen Servern zusammenarbeitet welche die komplizierteren Teile des Bitcoin-Cash-Systems übernehmen." +msgstr "Vilight" legt Wert auf Geschwindigkeit, Effizienz und Einfachheit. Es müssen keine regelmäßigen Backups angelegt werden, denn Ihre Geldbörse kann jederzeit durch den Seed (oder der zugehörigen Phrase) wiederhergestellt werden, welcher sich einfach ausdrucken oder aufschreiben lässt. Electron-Cash startet sofort, da es mit leistungsfähigen Servern zusammenarbeitet welche die komplizierteren Teile des Bitcoin-Cash-Systems übernehmen." #: plugins/email_requests/__init__.py:3 msgid "Email" @@ -2307,12 +2307,12 @@ msgstr "Verschlüsseln" msgid "Encrypt wallet file" msgstr "Datei der Geldbörse verschlüsseln" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "Nachricht verschlüsseln/entschlüsseln" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Nachricht verschlüsseln/entschlüsseln" @@ -2336,7 +2336,7 @@ msgstr "Ver- oder Entschlüsselung werden mit {} noch nicht unterstützt" msgid "Encryption and decryption are not implemented by {}" msgstr "Eine Ver- oder Entschlüsselung ist mit {} nicht implementiert" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "Genießen Sie hohe Sicherheit" @@ -2353,10 +2353,10 @@ msgid "Enter Passphrase" msgstr "Passphrase eingeben" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Passwort eingeben" @@ -2384,7 +2384,7 @@ msgstr "Geben Sie eine Liste von Bitcoin-Cash-Adressen (die erstellte Geldbörse msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Geben Sie in das \"Zahle An\"-Feld eine Liste von Ausgaben ein." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "Geben Sie eine Liste privater Schlüssel ein, um eine normale Ausgabe-Geldbörse zu erstellen. Alternativ können Sie eine Geldbörse im 'Beobachtungsmodus' erstellen, indem Sie eine Liste der Vitae-Adressen eingeben." @@ -2416,11 +2416,11 @@ msgstr "Geben Sie den Schlüssel des Mitsignierers ein" msgid "Enter cosigner seed" msgstr "Geben Sie die Seed des Mitsignierers ein" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "Name der neuen Geldbörse eingeben" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "Adresse eingeben oder auswählen" @@ -2453,7 +2453,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de msgstr "Geben Sie die Wiederherstellungsworte ein, indem Sie die Buttons entsprechend der Anzeige auf dem Gerät betätigen. Sie können auch das Numpad verwenden.\n" "Verwenden Sie die Rücktaste um zum vorherigen Wort zurückzukehren.\n" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "Das selbe Passwort erneut eingeben" @@ -2484,17 +2484,17 @@ msgid "Enter your password or choose another file." msgstr "Geben Sie Ihr Passwort ein oder wählen Sie eine andere Datei." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Passwort eingeben um fortzufahren" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "Gib deinen Seed-Satz ein" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "Geben Sie die Ableitung Ihrer Geldbörse an." @@ -2513,11 +2513,11 @@ msgstr "Digital-Bitbox zurücksetzen" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Fehler" @@ -2547,9 +2547,9 @@ msgstr "Fehler: Öffentlicher Generalschlüssel doppelt vorhanden" #: gui/qt/__init__.py:373 msgid "Exit ViLight" -msgstr "Electron-Cash beenden" +msgstr "Vilight" beenden" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "Erwaretete Best." @@ -2586,7 +2586,7 @@ msgstr "Transaktionsverlauf exportieren" msgid "Export file" msgstr "Datei exportieren" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "Geldbörse wird exportiert..." @@ -2599,7 +2599,7 @@ msgid "Extend this seed with custom words" msgstr "Den Seed mit selbst ausgewählten Wörtern verlängern" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "Externe Adresse" @@ -2625,7 +2625,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "Fehler beim Senden der Transaktion an den Cosigner-Pool." #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Passwort konnte nicht geändert werden" @@ -2634,12 +2634,12 @@ msgid "Failed to verify SSL certificate" msgstr "SSL-Zertifikat konnte nicht verifiziert werden" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Gebühr" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "Gebühren manuell bearbeiten" @@ -2657,27 +2657,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "Bitte geben Sie Ihre E-Mail-Adresse ein, wenn Sie bereit sind, weitere Details zu geben, aber beachten Sie, dass sie in der relevanten github Issue erscheinen wird." #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Transaktionsgebühren" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Fiat" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "Fiat-Betrag" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Fiat-Währung" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Datei" @@ -2698,11 +2698,11 @@ msgid "Fixed rate: " msgstr "Fixer Betrag: " #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Diesem Zweig folgen" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2739,8 +2739,8 @@ msgid "Format: address, amount" msgstr "Format: Adresse, Betrag" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "Einfrieren" @@ -2782,11 +2782,11 @@ msgid "From the &blockchain" msgstr "Aus der &Blockchain" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "Eingefroren" @@ -2798,7 +2798,7 @@ msgstr "Voll" msgid "Full 2FA enabled. This is not supported yet." msgstr "Vollständige 2FA aktiviert. Das wird noch nicht unterstütz." -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "Finanziert" @@ -2826,24 +2826,24 @@ msgstr "Im Allgemeinen ist eine Gebühr von 1.0 Sats/B eine guter Mindestsatz, u msgid "Generate a new random wallet" msgstr "Neue zufällige Geldbörse generieren" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "Seed wird generiert..." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "Erstelle Ihre Adressen..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "Erstelle Ihre Geldbörse..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "Los geht's" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "Jetzt loslegen" @@ -2880,10 +2880,10 @@ msgid "Hardware Wallet Support..." msgstr "Hardware-Geldbörsen-Unterstützung..." #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Höhe" @@ -2895,11 +2895,11 @@ msgstr "Hilfe" msgid "Here is your master public key." msgstr "Das ist Ihr öffentliche Generalschlüssel." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "Download-Banner ausblenden" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "Download-Banner ausblenden" @@ -2926,8 +2926,8 @@ msgstr "Startbildschirm" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Server" @@ -2980,7 +2980,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "Wenn 'Nur mit bevorzugten Servern verbinden' aktiviert ist, wird ViLight nur mit Servern verbinden, die als 'bevorzugte' Server ({}) markiert sind." #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "Wenn die automatische Verbindung aktiviert ist, verbindet sich ViLight zum Server mit der längsten Blockchain." @@ -3001,7 +3001,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "Wenn unzureichende gemischtes Guthaben verfügbar ist, können Sie ein paar Minuten warten, da Coins im Hintergrund gemischt werden." #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "Falls deaktiviert müssen Sie selbst einen Server zur Nutzung wählen. ViLight wird Sie warnen, falls der Server nachhinkt." @@ -3030,7 +3030,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "Die meiste Zeit ist es sicher diese Option deaktiviert zu lassen. Allerdings ist es sicherer sie zu aktivieren (das kann jedoch neue Serverbetreiber die ihre Server füllen möchten abschrecken)." #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "Wenn Sie nicht wissen, was das ist, lassen Sie das Feld unverändert." @@ -3075,12 +3075,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "Wenn Sie glauben dass diese Geldbörse einen Transaktionsverlauf für Adressen nach der Lücke hat, verwenden Sie dieses Werkzeug, um sie zu suchen. Wenn ein Verlauf für eine Adresse gefunden wurde, werden diese Adressen (plus alle dazwischenkommenden Adressen) zu Ihrer Geldbörse hinzugefügt." #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "Wenn Sie möchten dass die Geldbörse Bitcoin-Cash-Adressen verwendet, verwenden Sie m/44'/445'/0'" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "Wenn Sie möchten dass die Geldbörse alte Bitcoin-Adressen verwendet, verwenden Sie m/44'/0'/0'" @@ -3098,12 +3098,12 @@ msgstr "Wenn Sie wählen möchten welche spezifischen Coins verwendet werden um msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "Wenn Ihre Geldbörse noch Guthaben enthält, achten Sie darauf, dass Sie den Seed besitzen." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "Bild" @@ -3113,14 +3113,14 @@ msgstr "Bild muss eine TOI{} Datei der Größe {}x{} sein" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importieren" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "Adressen oder private Schlüssel importieren" @@ -3128,7 +3128,7 @@ msgstr "Adressen oder private Schlüssel importieren" msgid "Import Vitae Addresses" msgstr "Bitcoin-Adresse importieren" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "Bitcoin-Cash-Adressen oder private Schlüssel importieren" @@ -3156,19 +3156,19 @@ msgstr "Private Schlüssel importieren" msgid "Importing encrypted files is not supported." msgstr "Das Importieren verschlüsselter Dateien wird nicht unterstützt." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "Wenn Sie diese Adressen importieren, werden sie zu Ihrer Geldbörse im Beobachtungsmodus hinzugefügt." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "Wenn diese Adressen importiert werden, wird eine Geldbörse im Beobachtungsmodus erstellt." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "Wenn Sie diese Schlüssel importieren, werden Adressen und Schlüssel zu Ihrer Ausgabe-Geldbörse hinzugefügt." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "Wenn Sie diese Schlüssel importieren, wird eine voll funktionierende Ausgabe-Geldbörse erstellt." @@ -3222,8 +3222,8 @@ msgstr "Index" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Informationen" @@ -3237,7 +3237,7 @@ msgstr "Eingerichtet" #: gui/qt/network_dialog.py:363 msgid "Initially, the preferred list is the hard-coded list of known-good servers vetted by the Vitae developers." -msgstr "Die bevorzugte Liste ist die Liste der bekannten Server, die von den Electron-Cash-Entwicklern getestet wurden." +msgstr "Die bevorzugte Liste ist die Liste der bekannten Server, die von den Vilight-Entwicklern getestet wurden." #: gui/qt/transaction_dialog.py:424 gui/qt/transaction_dialog.py:697 #, python-brace-format @@ -3247,8 +3247,8 @@ msgstr[0] "Eingabe" msgstr[1] "Eingaben ({num_inputs})" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Eingabebetrag" @@ -3260,7 +3260,7 @@ msgstr "Eingabedaten sind kein Transaktions-Hash." msgid "Input raw transaction" msgstr "Roh-Transaktionsdaten eingeben" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Eingaben" @@ -3283,8 +3283,8 @@ msgid "Installed &Plugins" msgstr "Installierte &Plugins" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Guthaben nicht ausreichend" @@ -3296,25 +3296,25 @@ msgstr "Integration" msgid "Internal error converting image" msgstr "Interner Fehler beim Konvertieren des Bild" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "Ungültig" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Ungültige Adresse" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Ungültiger Betrag" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "Ungültige Bitcoin-Cash-Adresse." @@ -3347,9 +3347,9 @@ msgstr "Ungültiger Generalschlüssel" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "Ungültige PIN - bitte entfernen Sie {} und fügen Sie es erneut ein, bevor Sie erneut versuchen" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "Ungültiger QR-Code" @@ -3358,7 +3358,7 @@ msgid "Invalid amount" msgstr "Ungültiger Betrag" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "Ungültige Bitcoin-Cash-URI:" @@ -3370,7 +3370,7 @@ msgstr "Ungültiger Kanal." msgid "Invalid lines found:" msgstr "Fehlerhafte Zeilen gefunden:" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "Ungültiger Name, bitte versuchen Sie es erneut." @@ -3390,7 +3390,7 @@ msgstr "Rechnungen" msgid "Is default for address" msgstr "Ist Standard für Adresse" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "Es scheint, dass die angegebene Ableitung ungültig ist. Bitte versuchen Sie es erneut" @@ -3503,7 +3503,7 @@ msgstr "Alt" msgid "Legacy Address" msgstr "Alte Adresse" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "Alte Adresse" @@ -3543,7 +3543,7 @@ msgstr "Transaktion laden" msgid "Loading backup..." msgstr "Sicherung wird geladen..." -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "Sperrzeit" @@ -3596,12 +3596,12 @@ msgstr "Stellen Sie sicher, im Besitz der Seed-Worte oder der privaten Schlüsse msgid "Make this Vitae ID the default for this address" msgstr "Dieses Cash-Account als Standard für diese Adresse machen" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "Manuelle Gebühr" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "Generalschlüssel" @@ -3617,16 +3617,16 @@ msgstr "Öffentliche Generalschlüssel" msgid "Matrix" msgstr "Matrix" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Max" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Maximale Gebühr überschritten" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "Max. statische Gebühr" @@ -3663,7 +3663,7 @@ msgid "Minimum coin:" msgstr "Miniimale Coins:" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Mining-Vergütung" @@ -3675,7 +3675,7 @@ msgstr "Libsecp256k1 fehlt" msgid "Mobile pairing options" msgstr "Verbindungsoptionen zum Mobilgerät" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "Geldbörsen-Passwort & -Verschlüsselung ändern" @@ -3699,15 +3699,15 @@ msgstr "Multisignaturbörse" msgid "Multiple results were found, please select an option from the items below:" msgstr "Mehrere Ergebnisse wurden gefunden, bitte wählen Sie eine Option aus den folgenden Elementen:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "Meine Wechselgeld-Adresse" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "Meine Empfangs-Adresse" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "Meine Geldbörse" @@ -3717,12 +3717,12 @@ msgstr "NICHT DIE GERÄTE PIN - siehe oben" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Name" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "Name ist leer" @@ -3735,11 +3735,11 @@ msgid "Needs update" msgstr "Update erforderlich" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Netzwerk" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "Netzwerkeinstellungen" @@ -3752,7 +3752,7 @@ msgstr "Netzwerkstatus" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Nie" @@ -3762,7 +3762,7 @@ msgid "Never ask for this wallet" msgstr "Nie für diese Geldbörse fragen" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Geben Sie niemals den Seed weiter." @@ -3771,7 +3771,7 @@ msgid "Never show this again" msgstr "Niemals wieder anzeigen" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Geben Sie ihn niemals auf einer Webseite ein." @@ -3780,8 +3780,8 @@ msgid "New Vitae ID Contact" msgstr "Neuer Cash-Account-Kontakt" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Neuer Kontakt" @@ -3789,19 +3789,19 @@ msgstr "Neuer Kontakt" msgid "New Password:" msgstr "Neues Passwort:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "Neue Geldbörse" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "Neue Geldbörse erstellt" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Neuer Kontakt" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "Neue Transaktion empfangen: {}" @@ -3810,21 +3810,21 @@ msgid "New transaction: {}" msgstr "Neue Transaktion: {}" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Weiter" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "Nein" @@ -3832,7 +3832,7 @@ msgstr "Nein" msgid "No Vitae IDs" msgstr "Keine Cash-Accounts" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "Keine Übereinstimmung" @@ -3848,15 +3848,15 @@ msgstr "Kein QR-Code gefunden" msgid "No QR code was found in the selected image file." msgstr "In der ausgewählten Bilddatei wurde kein QR-Code gefunden." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Keine Geldbörse" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "Keine Geldbörse ist geöffnet" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "Keine Adressen entsprechen den angegebenen Kriterien" @@ -3864,7 +3864,7 @@ msgstr "Keine Adressen entsprechen den angegebenen Kriterien" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "Im angegebenen Scanbereich wurden keine Adressen mit Transaktionsverlauf gefunden." -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "Keine Coins" @@ -3893,7 +3893,7 @@ msgid "No matching x_key for sign_transaction" msgstr "Kein passender x_key für sign_transaction" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Keine Nachricht oder Betrag" @@ -3902,16 +3902,16 @@ msgid "No more addresses in your wallet." msgstr "Es sind keine Adressen mehr in ihrer Geldbörse vorhanden." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Keine Ausgaben" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "Keine Zahlungsanfragen gefunden. Sie können gerne eine erstellen." #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "Keine Empfangadresse" @@ -3923,25 +3923,25 @@ msgstr "Keine Ergebnisse gefunden. Ihre Geldbörse wird jedoch aktualisiert. Die msgid "No such mempool or blockchain transaction exists." msgstr "Keine solche Mempool- oder Blockchain-Transaktion existiert." -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "Keine Transaktionen" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "Keine Transaktionen auf der Blockchain gefunden." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "Keine gültigen Elemente verbleiben. Kann nicht fortfahren -- gehe zurück und versuche es erneut." #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Keine" @@ -3949,7 +3949,7 @@ msgstr "Keine" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "Normalerweise, wenn Sie eine Geldbörse von einem Seed (re)generieren, werden Adressen abgeleitet und zur Geldbörse hinzugefügt, bis ein Block von Adressen ohne Verlauf gefunden wird. Dies wird als Lücke bezeichnet." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "Nicht gelöscht" @@ -3971,8 +3971,8 @@ msgstr "Keine Textdatei" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Nicht verbunden" @@ -4029,18 +4029,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Anzahl der Nachkommastellen. Wenn es z.B. auf 2 steht, wird \"1,\" als \"1,00\" dargestellt." #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "OK" @@ -4073,11 +4073,11 @@ msgstr "OP_RETURN Skript zu groß, darf nicht länger als 223 Bytes sein" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Offline" @@ -4114,13 +4114,13 @@ msgstr "Auf den meisten Systemen können Sie dies mit diesem Befehl tun:" msgid "One output per line." msgstr "Eine Ausgabe pro Zeile." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "Online" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Online-Block-Explorer" @@ -4148,11 +4148,11 @@ msgstr "Nur Adressausgaben werden von {} unterstützt" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "Löschen Sie das Gerät nur, wenn Sie über den Wiederherstellungs-Seed verfügen oder wenn die Geldbörse leer ist. Ansonsten sind die enthaltenen Bitcoins für immer verloren." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "Neue Geldbörse öffnen" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "Geldbörse öffnen" @@ -4172,12 +4172,12 @@ msgstr "OpenAlias" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "OpenAlias-Eintrag, kann zum Empfangen von Coins und zum Signieren von Zahlungsanfragen verwendet werden." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "Öffne verschlüsselte Geldbörse: '{}'" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "Öffne {}..." @@ -4190,12 +4190,12 @@ msgid "Optional Features" msgstr "Optionale Funktionen" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Optionen" @@ -4204,8 +4204,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "Veraltete Firmware {} für Gerät mit Bezeichnung \"{}\" erkannt. Bitte laden Sie die aktuelle Firmware von {}" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4220,7 +4220,7 @@ msgstr "Ausgabebetrag" msgid "Output point" msgstr "Ausgabepunkt" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Ausgaben" @@ -4273,21 +4273,21 @@ msgstr "Passphrasen erlauben es, beliebig viele Geldbörsen zu nutzen, die sich msgid "Password" msgstr "Passwort" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "Passwort falsch" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "Passwort erforderlich" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Passwortstärke" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Kein Passwort vergeben, diese Geldbörse ist nicht gesichert" @@ -4302,7 +4302,7 @@ msgid "Password must have less than 64 characters." msgstr "Passwort muss weniger als 64 Zeichen haben." #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Passwort wurde erfolgreich aktualisiert" @@ -4310,7 +4310,7 @@ msgstr "Passwort wurde erfolgreich aktualisiert" msgid "Password:" msgstr "Passwort:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "Adresse einfügen oder QR verwenden" @@ -4336,9 +4336,9 @@ msgid "Pay Now" msgstr "Jetzt bezahlen" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Zahle an" @@ -4350,21 +4350,21 @@ msgstr "Zahle an mehrere" msgid "Payment Request" msgstr "Zahlungsanfrage" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "Zahlungsanfrage Fehler" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Zahlungsanfrage ist abgelaufen" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "Zahlungsanfrage gespeichert" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Zahlung gesendet." @@ -4393,7 +4393,7 @@ msgid "Players" msgstr "Spieler" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "Bitte beschreiben Sie kurz, was zum Fehler geführt hat (optional):" @@ -4425,7 +4425,7 @@ msgstr "Bitte geben Sie den öffentlichen Generalschlüssel (xpub) des Mitsignie msgid "Please enter the master public key of cosigner #{}:" msgstr "Bitte geben Sie den öffentlichen Generalschlüssel des Mitsignierers #{} ein:" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "Bitte geben Sie den neuen Namen für diese Geldbörse ein:" @@ -4460,19 +4460,19 @@ msgstr "Bitte installieren Sie die entsprechenden Bibliotheken für diese Plugin msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "Bitte stellen Sie sicher, dass 'Browser-Unterstützung' auf Ihrem {} deaktiviert ist." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "Bitte geben Sie einen öffentlichen Schlüssel ein oder wählen Sie eine Adresse" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "Bitte geben Sie einen öffentlichen Schlüssel für Entschlüsselung an" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "Bitte geben Sie eine Signatur und eine Nachricht an, die überprüft werden soll" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "Bitte geben Sie den Chiffretext zum Entschlüsseln an" @@ -4493,7 +4493,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "Bitte überprüfen Sie die Transaktion, speichern und/oder senden Sie sie wenn Sie möchten." #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "Bitte speichern Sie diese %d Wörter auf Papier (Reihenfolge ist wichtig). " @@ -4506,7 +4506,7 @@ msgstr "Bitte wählen Sie Ihr {}-Gerät:" msgid "Please share it with your cosigners." msgstr "Bitte teilen Sie ihn den Mitsignierern mit." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "Bitte geben Sie einen Generalschlüssel an, um fortzufahren. Gültige Schlüssel sind lange Zeichenketten, die entweder mit xpub/ypub/zpub oder xprv/yprv/zprv beginnen." @@ -4530,8 +4530,8 @@ msgstr "Bitte aktualisieren Sie auf v0.1.27 oder höher" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "Bitte besuchen Sie diese Seite für Anweisungen, wie die Situation zu korrigieren ist:" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Bitte warten" @@ -4549,7 +4549,7 @@ msgstr "Bitte warten..." msgid "Please wait... {num}/{total}" msgstr "Bitte warten... {num}/{total}" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "Bitte schreiben Sie Ihre Seed-Phrase auf, da es die einzige Möglichkeit ist, Ihr Guthaben wiederherzustellen, wenn Sie Ihr Passwort vergessen oder Ihr Gerät gestohlen wird." @@ -4582,7 +4582,7 @@ msgid "Pool size" msgstr "Pool-Größe" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Port" @@ -4590,7 +4590,7 @@ msgstr "Port" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "Gibt eine PERMANENTE Notiz auf der VITAE Blockchain als Teil dieser Transaktion bekannt." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "Mögliche Unsichere Operation" @@ -4619,7 +4619,7 @@ msgstr "Drücke \"Weiter\" um diese Geldbörse zu öffnen." msgid "Press Enter" msgstr "Drücken Sie die Eingabetaste" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Vorschau" @@ -4627,14 +4627,14 @@ msgstr "Vorschau" msgid "Privacy Warning" msgstr "Privatsphäre Warnung" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "Privater Schlüssel" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Privater Schlüssel" @@ -4651,7 +4651,7 @@ msgid "Proceed to Send Tab" msgstr "Weiter zum Senden-Tab" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Fortfahren?" @@ -4689,14 +4689,14 @@ msgstr "Proxy" #: gui/qt/network_dialog.py:410 msgid "Proxy settings apply to all connections: with ViLight servers, but also with third-party services." -msgstr "Proxyeinstellungen werden auf alle Verbindungen angewendet, sowohl mit Electron-Cash-Servern als auch mit Servern von Drittanbietern." +msgstr "Proxyeinstellungen werden auf alle Verbindungen angewendet, sowohl mit Vilight-Servern als auch mit Servern von Drittanbietern." #: gui/qt/network_dialog.py:385 msgid "Proxy user" msgstr "Proxy-Benutzer" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Öffentlicher Schlüssel" @@ -4708,10 +4708,10 @@ msgstr "Öffentliche Schlüssel" msgid "PyQt5 Upgrade Needed" msgstr "PyQt5 Upgrade erforderlich" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "QR nicht verfügbar" @@ -4720,9 +4720,9 @@ msgid "QR Reader Error" msgstr "QR-Leser-Fehler" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR-Code" @@ -4750,7 +4750,7 @@ msgstr "QR-Reader konnte nicht geladen werden. Dies kann passieren, wenn Sie ein msgid "QtSvg Missing" msgstr "QtSvg fehlt" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "Frage" @@ -4797,8 +4797,8 @@ msgid "Rebuild this wallet's history now?" msgstr "Verlauf dieser Geldbörse neu aufbauen?" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Empfangen" @@ -4811,13 +4811,13 @@ msgid "Receive request URI copied to clipboard" msgstr "Empfangsanfrage URI in Zwischenablage kopiert" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "Eingehend" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "Empfangsadresse" @@ -4825,7 +4825,7 @@ msgstr "Empfangsadresse" msgid "Receiving Addresses Only" msgstr "Nur Empfangsadressen" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Empfängeradresse" @@ -4838,11 +4838,11 @@ msgid "Recover from a seed you have previously written down" msgstr "Von einer zuvor aufgeschriebenen Seed wiederherstellen" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Redeem-Skript" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "Seed-Satz erneut eingeben" @@ -4864,10 +4864,10 @@ msgid "Register new..." msgstr "Neuen registrieren..." #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Entfernen" @@ -4889,20 +4889,20 @@ msgstr "{list_of_contacts} aus Ihrer Kontaktliste entfernen?" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "{number_of_contacts} Kontakte aus Ihrer Kontaktliste entfernen?" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "Umbenennen" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "Geldbörse umbenennen" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "Inhalt des Berichts" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "Bericht gesendet" @@ -4914,17 +4914,17 @@ msgstr "Fehler berichten" msgid "Request &expires" msgstr "Anfrage &läuft ab" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "Anfrage URI" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Anfrage läuft ab" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "Zahlung anfragen" @@ -4940,7 +4940,7 @@ msgstr "Anfrage gesendet." msgid "Requested &amount" msgstr "Angeforderter &Betrag" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Angefragter Betrag" @@ -4948,8 +4948,8 @@ msgstr "Angefragter Betrag" msgid "Requestor" msgstr "Antragsteller" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Anfragen" @@ -4982,8 +4982,8 @@ msgstr "Server Problem lösen..." msgid "Restart the CashShuffle plugin now?" msgstr "Das CashShuffle Plugin jetzt neu starten?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "Wiederherstellen von Seed" @@ -5027,13 +5027,13 @@ msgstr "SSL-Zertifikat zum Signieren von Zahlungsanfragen." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "SSL wird verwendet, um Ihre Verbindungen mit den Blockchain-Servern zu authentifizieren und zu verschlüsseln." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "Satoshi Nakamoto" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Speichern" @@ -5041,8 +5041,8 @@ msgstr "Speichern" msgid "Save QR Image" msgstr "QR-Bild speichern" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "Geldbörse speichern" @@ -5058,7 +5058,7 @@ msgstr "Rechnung als Datei speichern" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "Speichern Sie Ihre Transaktionsbezeichnungen auf einem Server und nutzen Sie sie auf jedem Gerät mit ViLight." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "Geldbörse speichern/exportieren" @@ -5087,7 +5087,7 @@ msgid "Scrambled words" msgstr "Vertauschte Wörter" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "Skript-Typ" @@ -5105,11 +5105,11 @@ msgstr "Wallet suchen, {key}F zum Verstecken" msgid "Searching for {cash_account_name} please wait ..." msgstr "Suche nach {cash_account_name}, Bitte warten ..." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "Secure-Enclave-Schlüssel-Reset" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "Secure-Enclave nicht verfügbar" @@ -5122,8 +5122,8 @@ msgid "Security Warning" msgstr "Sicherheitswarnung" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Seed" @@ -5131,7 +5131,7 @@ msgstr "Seed" msgid "Seed Entered" msgstr "Seed eingegeben" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "Seed Eingabe" @@ -5191,7 +5191,7 @@ msgstr "Server automatisch auswählen" msgid "Select server manually" msgstr "Server manuell wählen" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "Wählen Sie, wann die Zahlungsanfrage abgelaufen soll" @@ -5216,9 +5216,9 @@ msgid "Select your transaction file" msgstr "Transaktionsdatei auswählen" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Senden" @@ -5250,7 +5250,7 @@ msgstr "Über Lautsprecher abspielen" msgid "Send via e-mail" msgstr "Per E-Mail versenden" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "Bericht wird gesendet..." @@ -5263,7 +5263,7 @@ msgstr "Server" msgid "Server Error" msgstr "Server-Fehler" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "Server hängt hinterher" @@ -5284,7 +5284,7 @@ msgid "Server hosting your email account" msgstr "Server des E-Mail-Postfachs" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "Server hängt ({} Blöcke) hinterher" @@ -5320,46 +5320,46 @@ msgstr "PIN festlegen" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Einstellungen" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "Anfrage teilen" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "Als QR-Bild teilen..." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "Als URI teilen..." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "Anfrage teilen" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "QR teilen/speichern..." -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "Teilen/Speichern..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Anzeigen" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "Adresse als QR anzeigen" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "Alle Transaktionen anzeigen" @@ -5367,20 +5367,20 @@ msgstr "Alle Transaktionen anzeigen" msgid "Show Vitae IDs" msgstr "Cash-Accounts anzeigen" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "Coin Info anzeigen" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "Coins anzeigen (UTXOs)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "Kontakt anzeigen" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "Fiat-Betrag für Adressen anzeigen" @@ -5396,14 +5396,14 @@ msgstr "Zeige Prev Tx" msgid "Show QR Code" msgstr "QR-Code zeigen" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "Skript QR anzeigen" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Als QR-Code anzeigen" @@ -5416,11 +5416,11 @@ msgid "Show help" msgstr "Hilfe anzeigen" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Historische Werte zeigen" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "Eingabehash QR anzeigen" @@ -5495,7 +5495,7 @@ msgid "Shuffling Paused" msgstr "Mischen pausiert" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Signieren" @@ -5503,12 +5503,12 @@ msgstr "Signieren" msgid "Sign all transactions using Schnorr signatures." msgstr "Alle Transaktionen mit Schnorr Signaturen signieren." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "Nachricht signieren/verifizieren" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Nachricht signieren/verifizieren" @@ -5521,7 +5521,7 @@ msgid "Signature" msgstr "Signatur" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Signatur bestätigt" @@ -5542,17 +5542,17 @@ msgid "Signing message..." msgstr "Signiere Nachricht..." #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Transaktion wird signiert..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "Mit einer Adresse zu signieren, bedeutet, mit dem zugehörigen privaten Schlüssel zu signieren und die Signatur mit dem öffentlichen Schlüssel zu prüfen. Da die eingegebene Adresse nicht über einen eindeutigen öffentlichen Schlüssel verfügt, kann die Operation nicht angewendet werden." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Größe:" @@ -5566,12 +5566,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "Einiges Ihres nicht gemischten Guthaben kann vorübergehend gesperrt werden, während der Mischvorgang ausgeführt wird. Wenn Sie dieses Guthaben sofort freischalten möchten, können Sie den \"Mischen pausieren\"-Button benutzen, um dies zu tun." #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "Etwas ist schief gelaufen mit ViLight." #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "Entschuldigung!" @@ -5580,11 +5580,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "Entschuldigung, aber wir konnten nicht nach Updates suchen. Bitte versuchen Sie es später noch einmal." #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Quelle" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "Geben Sie einen Generalschlüssel an, um eine deterministische Geldbörse neu zu erstellen." @@ -5597,11 +5597,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "Geben Sie den Kontonamen unten an (begrenzt auf 99 Zeichen):" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "Ausgegeben" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "Von hier ausgeben" @@ -5617,20 +5617,20 @@ msgstr "Ungemischte ausgeben" msgid "Spend from" msgstr "Von hier ausgeben" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "Von dieser Adresse ausgeben" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "Von diesem UTXO ausgeben" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "Von diesem UTXO + Ausgewählten ausgeben" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Nur bestätigte Coins ausgeben" @@ -5654,7 +5654,7 @@ msgstr "Ausgeben und Verknüpfen von Coins mit CashShuffle deaktiviert kann Ihre msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "Ausgeben und Verknüpfen dieser Beträge kann Ihre Privatsphäre nicht nur für neu empfangene Beträge, sondern auch für Ihre bisherigen Ausgaben von gemischten Coins gefährden." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "Standard-Geldbörse" @@ -5669,15 +5669,15 @@ msgstr "Scan starten" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Status" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Status:" @@ -5686,10 +5686,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "Schritt {} von 24. Seed-Wort wie auf dem {} erklärt angeben:" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Erfolgreich" @@ -5717,13 +5717,13 @@ msgstr "Private Schlüssel entleeren" msgid "Synchronize now?" msgstr "Jetzt synchronisieren?" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "Synchronisiere" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Synchronisiere..." @@ -5735,33 +5735,33 @@ msgstr "System" msgid "TREZOR wallet" msgstr "TREZOR Geldbörse" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "Drücken um eine Beschreibung hinzuzufügen" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "Drücken um Text hinzuzufügen..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "Drücken um ein Passwort einzugeben" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "Drücken um Text einzugeben..." #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "Der Text wurde in die Zwischenablage kopiert" #: gui/qt/main_window.py:1133 msgid "The Vitae address never expires and will always be part of this ViLight wallet." -msgstr "Die Bitcoin-Cash-Adresse wird niemals ablaufen und immer Teil dieser Electron-Cash-Geldbörse sein." +msgstr "Die Bitcoin-Cash-Adresse wird niemals ablaufen und immer Teil dieser Vilight-Geldbörse sein." #: gui/qt/main_window.py:1019 msgid "The Vitae ID (if any) associated with this address. It doesn't get saved with the request, but it is shown here for your convenience.\n\n" @@ -5772,7 +5772,7 @@ msgstr "Das Cash-Account (falls vorhanden) das mit dieser Adresse verbunden ist. #: gui/qt/cashacctqt.py:168 gui/qt/cashacctqt.py:772 #, python-brace-format msgid "The Vitae ID {name} uses an account type that is not supported by ViLight." -msgstr "Das Cash-Account {name} verwendet einen Kontotyp, der nicht von Electron-Cash unterstützt wird." +msgstr "Das Cash-Account {name} verwendet einen Kontotyp, der nicht von Vilight unterstützt wird." #: plugins/digitalbitbox/digitalbitbox.py:212 msgid "The Digital Bitbox is already seeded. Choose an option:" @@ -5780,26 +5780,26 @@ msgstr "Die Digital Bitbox verfügt bereits über einen Seed. Bitte auswählen:" #: gui/qt/external_plugins_window.py:119 msgid "The ViLight Developers do NOT audit or vet any plugins." -msgstr "Die Electron-Cash-Entwickler inspizieren oder prüfen Plugins NICHT." +msgstr "Die Vilight-Entwickler inspizieren oder prüfen Plugins NICHT." #: plugins/keepkey/clientbase.py:54 plugins/trezor/clientbase.py:283 msgid "The PIN cannot be longer than 9 characters." msgstr "Die PIN darf nicht länger als 9 Zeichen sein." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "Der QR-Code enthält mehrere Ausgaben. Momentan wird nur eine einzelne Ausgabe unterstützt.\n" "Bitte versuchen Sie es erneut." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "Der QR-Code scheint keine gültige VITAE-Adresse oder Zahlungsanfrage zu sein.\n" "Bitte versuchen Sie es erneut." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "Der QR-Code scheint keine gültige VITAE-Adresse zu sein.\n" @@ -5821,10 +5821,10 @@ msgstr "Die Gebührenbetrag kann vom Sender frei gewählt werden. Die Verarbeitu msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Der Betrag wird in rot angezeigt, falls nicht genügend Guthaben in der Geldbörse ist." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "Die Kamera ist nicht verfügbar, um QR-Codes zu lesen" @@ -5876,7 +5876,7 @@ msgstr "Folgende konnten nicht importiert werden" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "Das Format der Geldbörse \"%s\" muss für ViLight aktualisiert werden. Diese Änderung ist nicht rückwärtskompatiblel" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "Die Nachricht wurde erfolgreich entschlüsselt" @@ -5885,11 +5885,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "Die Mnemonik muss 12, 18 oder 24 Wörter sein." #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." -msgstr "Diese Operation ist nicht definiert - nicht nur in Electron-Cash sondern überhaupt." +msgstr "Diese Operation ist nicht definiert - nicht nur in Vilight sondern überhaupt." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "Das Passwort für diese verschlüsselte Geldbörse ist falsch, bitte versuchen Sie es erneut." @@ -5931,7 +5931,7 @@ msgstr "Dem Plugin-Manifest fehlt ein gültiger Anzeigenamen." #: gui/qt/external_plugins_window.py:50 msgid "The plugin manifest lacks a valid minimum ViLight version." -msgstr "Dem Plugin-Manifest fehlt eine Mindestversion von Electron-Cash." +msgstr "Dem Plugin-Manifest fehlt eine Mindestversion von Vilight." #: gui/qt/external_plugins_window.py:51 msgid "The plugin manifest lacks a valid package name." @@ -5941,21 +5941,21 @@ msgstr "Dem Plugin-Manifest fehlt ein gültiger Paketnamen." msgid "The plugin manifest lacks a valid version." msgstr "Dem Plugin-Manifest fehlt eine gültige Version." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "Der angegebene Schlüssel scheint kein gültiger Generalschlüssel zu sein. Gültige Schlüssel sind lange Zeichenketten, die mit xpub/ypub/zpub oder xprv/yprv/zprv beginnen. Bitte versuchen Sie es erneut." -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "Die angeforderte Transaktion ist aus dem Geldbörsen-Verlauf herausgefallen.\n\n" -"Wenn dieses Problem weiterhin besteht, kontaktieren Sie uns bitte unter electroncash.org." +"Wenn dieses Problem weiterhin besteht, kontaktieren Sie uns bitte unter https://www.vitaetoken.io/." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "Der von Ihnen eingegebene Seed scheint kein gültiger Geldbörsen-Seed zu sein." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "Der von Ihnen eingegebene Seed stimmt nicht mit dem generierten Seed überein. Gehen Sie zurück zum vorherigen Dialog und überprüfen Sie ihn, versuchen Sie es erneut." @@ -5967,7 +5967,7 @@ msgstr "Die ausgewählte Datei scheint eine Binärdatei zu sein." msgid "The server did not answer; network may be down." msgstr "Der Server hat nicht geantwortet; das Netzwerk könnte nicht verfügbar sein." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "Die Signatur für die angegebene Nachricht wurde in das Signatur Textfeld eingefügt." @@ -5983,7 +5983,7 @@ msgstr "Der angegebene WIF-Schlüssel '{}' ist ein p2sh WIF-Schlüssel. Diese Sc msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "Der angegebene Name kann nicht für eine Cash-Accounts-Registrierung verwendet werden. Sie müssen 1-99 alphanumerische (ASCII) Zeichen angeben, ohne Leerzeichen (Unterstriche sind ebenfalls erlaubt)." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "Der angegebene öffentliche Schlüssel kann diesen Chiffretext nicht entschlüsseln.\n" @@ -6061,7 +6061,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" msgstr "Das {} Gerät befindet sich jetzt in einem inkonsistenten Zustand.\n\n" "Sie müssen das Gerät möglicherweise entfernen und wieder einstecken, und was Sie taten wiederholen." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "Es gibt keine Transaktionen für diese Geldbörse auf der Blockchain." @@ -6088,11 +6088,11 @@ msgid "There was an error processing the payment request" msgstr "Es gab einen Fehler bei der Bearbeitung der Zahlungsanfrage" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Diese Blockchain wird genutzt, um die Transaktionen von Ihrem Transaktionsserver zu prüfen." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "Diesem Gerät fehlt Secure-Enclave-Dienst. Deswegen ist die Touch-/Face-ID-basierte Geldbörsen-Authentifizierung nicht verfügbar." @@ -6125,17 +6125,17 @@ msgid "This is a preferred server" msgstr "Dies ist ein bevorzugter Server" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Diese Geldbörse ist im Beobachtungsmodus" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "Dies ist eine Geldbörse im Beobachtungsmodus, weswegen die privaten Schlüssel in beobachtete Adressen umgewandelt werden." #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "Diese Geldbörse ist im Beobachtungsmodus." @@ -6144,7 +6144,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "Dies ist der Gebührensatz, der für diese Transaktion verwendet wird." #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Das ist die Höhe Ihrer lokalen Kopie der Blockchain." @@ -6153,12 +6153,12 @@ msgid "This may result in higher transactions fees." msgstr "Dies könnte zu höheren Transaktionsgebühren führen." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "Das bedeutet, dass sie die Vitae nicht ausgeben können." #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Die Zahlungsanfrage wird signiert." @@ -6166,14 +6166,14 @@ msgstr "Die Zahlungsanfrage wird signiert." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "Dieses Plugin vereinfacht die Nutzung von Multisignaturbörsen." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "Diese Anfrage läuft ab: {}" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Mit diesem Seed lässt sich Ihre Geldbörse nach einem Computerausfall wiederherstellen." @@ -6189,7 +6189,7 @@ msgstr "Dieser Server indiziert immer noch Transaktionen. Sie sollten derweilen msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "Dieser Ausgabemodus ist der gleiche wie die früheren Versionen von ViLight, die nicht CashShuffle anbieten." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "Diese Ausgabe-Geldbörse ist nicht verschlüsselt und nicht passwortgeschützt. Das Teilen über das Internet könnte dazu führen, dass andere Daten abfangen und dass Sie möglicherweise Geld verlieren.\n\n" @@ -6200,7 +6200,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "Diese Testnet-Geldbörse hat ein ungültiges Generalschlüsselformat." #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "Dieses Werkzeug hilft, zwischen Adressformaten für Vitae-Adressen umzuwandeln.\n" @@ -6214,7 +6214,7 @@ msgstr "Dieses Tool installiert Hardware-Geldbörsen \"udev-Regeln\" auf Ihrem S msgid "This transaction is not saved. Close anyway?" msgstr "Die Transaktion wurde nicht gespeichert. Trotzdem schließen?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "Diese Transaktion ist nicht signiert und somit fehlt es an einer Transaktions-ID." @@ -6222,16 +6222,16 @@ msgstr "Diese Transaktion ist nicht signiert und somit fehlt es an einer Transak msgid "This type of script is not supported with {}." msgstr "Der Skripttyp wird mit {} nicht unterstüzt." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "Diese Version von ViLight unterstützt derzeit nur das Senden an eine Adresse gleichzeitig! Sorry!" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Diese Geldbörse hat keinen Seed" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "Diese Geldbörse hat keine nicht ausgegebenen Ausgaben (Coins) zum Anzeigen." @@ -6270,30 +6270,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "Um fortzufahren, drücken Sie 3 Sekunden lang auf das Licht der Digital Bitbox." #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "Um eine vollständige Geldbörse zu erzeugen, geben Sie einen privaten Generalschlüssel (xprv, yprv oder zprv) ein." #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "Um eine Geldbörse im Beobachtungsmodus zu erzeugen, geben Sie einen öffentlichen Generalschlüssel (xpub, ypub oder zpub) ein." #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "Um uns bei der Fehlersuche und -behebung zu unterstützen, können Sie uns einen Fehlerbericht mit nützlichen Fehlerinformationen senden:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "Um Adressen in eine Ausgabe-Geldbörse zu importieren, müssen Sie ihren privaten Schlüssel verwenden." #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Um sicherzugehen daß Sie den Seed tatsächlich gesichert haben, bitte hier erneut eingeben." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "Um fortzufahren, wählen Sie bitte eine Geldbörse zum Öffnen." @@ -6313,9 +6313,9 @@ msgstr "CashAddr Anzeige umschalten" msgid "Toggle CashShuffle" msgstr "CashShuffle umschalten" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "Format umschalten" @@ -6339,7 +6339,7 @@ msgstr "Zu viele QR-Codes erkannt." msgid "Too small" msgstr "Zu klein" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "Werkzeuge" @@ -6347,25 +6347,25 @@ msgstr "Werkzeuge" msgid "Total size" msgstr "Gesamtgröße" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "Touch-/Face-ID für Geldbörse deaktiviert" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "Touch-/Face-ID für Geldbörse aktiviert" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transaktion" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "Transaktionsdetails" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "Transaktionsverlauf" @@ -6374,20 +6374,20 @@ msgid "Transaction ID" msgstr "Transaktions-ID" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "Transaktions-ID:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "Transaktionseingabe {}" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "Transaktion nicht gefunden" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "Transaktionsausgabe {}" @@ -6403,7 +6403,7 @@ msgstr "Transaktion konnte aufgrund von Staub-Ausgaben nicht gesendet werden (St msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "Transaktion konnte nicht gesendet werden, da fehlende, bereits ausgegebene oder anderweitig ungültige Eingaben vorhanden sind." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "Transaktionsverlauf ist möglicherweise noch nicht aktuell." @@ -6416,8 +6416,8 @@ msgid "Transaction saved successfully" msgstr "Transaktion erfolgreich gespeichert" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transaktion ohne Bezug zu Ihrer Geldbörse" @@ -6430,9 +6430,9 @@ msgid "Transaction:" msgstr "Transaktion:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transaktionen" @@ -6453,11 +6453,11 @@ msgid "Tx" msgstr "Tx" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "Typ" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "Zum Fortfahren 'Löschen' eingeben" @@ -6466,8 +6466,8 @@ msgid "Type: '{}' below to proceed" msgstr "Unten '{}' eigeben, um fortzufahren" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "UTXO" @@ -6491,7 +6491,7 @@ msgstr "Konnte CSV nicht erstellen" msgid "Unable to export history" msgstr "Transaktionsverlauf konnte nicht exportiert werden" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "Keine Empfangadresse von Ihrer Geldbörse erhalten!" @@ -6547,8 +6547,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "Leider kann diese Nachricht nicht von {} signiert werden. Nur alphanumerische Nachrichten werden kürzer als 140 Zeichen werden unterstützt. Bitte entfernen Sie alle zusätzlichen Zeichen (Tabulator, Zeilenumschaltung) und versuchen Sie es erneut." #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "Freigeben" @@ -6574,16 +6574,16 @@ msgstr "Deinstallieren" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Unbekannt" @@ -6591,7 +6591,7 @@ msgstr "Unbekannt" msgid "Unshuffled available:" msgstr "Ungemischt verfügbar:" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "Unsigniert" @@ -6599,7 +6599,7 @@ msgstr "Unsigniert" msgid "Unsupported Account Type" msgstr "Nicht unterstützter Kontotyp" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "Nicht unterstützter QR-Code" @@ -6611,7 +6611,7 @@ msgstr "Nicht unterstütztes Ausgabeskript." msgid "Unsupported payment data type." msgstr "Nicht unterstützter Zahlungsdatentyp." -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "Unbenutzt" @@ -6631,7 +6631,7 @@ msgstr "Update verfügbar, klicken Sie für Details" msgid "Update check failed" msgstr "Update-Überprüfung fehlgeschlagen" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "Transaktionsverlauf wird aktualisiert." @@ -6663,12 +6663,12 @@ msgstr "SSL verwenden" msgid "Use Tor Proxy" msgstr "Tor-Proxy nutzen" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "Touch-/Face-ID verwenden" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "Einen Generalschlüssel verwenden" @@ -6677,18 +6677,18 @@ msgid "Use a hardware device" msgstr "Ein Hardware-Gerät verwenden" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Als Server nutzen" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Wechselgeld-Adressen verwenden" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Mehrere Wechselgeld-Adressen verwenden" @@ -6704,24 +6704,24 @@ msgstr "Öffentliche oder private Schlüssel verwenden" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Verwenden Sie 'setconfig' um 'ssl_chain' und 'ssl_privkey' zu setzen." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "Nutzen Sie die Schnellvorschläge, um Zeit zu sparen." #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Nutzen Sie diesen Dialog, um zur Geldbörse ein Passwort hinzuzufügen." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Nutzen Sie diesen Dialog, um das Passwort zu ändern." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "Benutzt" @@ -6741,7 +6741,7 @@ msgstr "Wechselgeld-Adressen erschweren es Dritten, Ihre Transaktionen zu verfol msgid "Using this mode presents a potential security risk." msgstr "Die Nutzung dieses Modus stellt ein potenzielles Sicherheitsrisiko dar." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "Gültig" @@ -6754,7 +6754,7 @@ msgstr "Gültiges Cash-Account:
{emoji} {account_string}
" msgid "Verify" msgstr "Verifizieren" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "Nachricht überprüfen" @@ -6808,11 +6808,11 @@ msgstr "Rechnung ansehen" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "In Blockexplorer anzeigen" @@ -6828,7 +6828,7 @@ msgstr "Registrierungs tx anzeigen" msgid "View registration tx..." msgstr "Registrierungs tx anzeigen..." -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "Geldbörsen-Seed-Phrase für Geldbörsen-Wiederherstellung anzeigen" @@ -6837,7 +6837,7 @@ msgid "View tx" msgstr "Zeige tx" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "WARNUNG" @@ -6865,22 +6865,22 @@ msgstr "Geldbörse" msgid "Wallet Information" msgstr "Geldbörseninformationen" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "Geldbörsen-Operationen" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "Geldbörsen-Passwort" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "Geldbörsen-Wiederherstellungsphrase" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "Geldbörsen-Seed" @@ -6888,11 +6888,11 @@ msgstr "Geldbörsen-Seed" msgid "Wallet backup created" msgstr "Sicherung der Geldbörse erstellt" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "Geldbörse erfolgreich gelöscht" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "Geldbörsen-Datei" @@ -6908,15 +6908,15 @@ msgstr "Geldbörse hat keine Adresse zum entleeren" msgid "Wallet name" msgstr "Name der Geldbörse" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "Geldbörsen-Name ist leer. Bitte geben Sie einen Geldbörsen-Namen ein, um fortzufahren." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "Geldbörsen-Passwort ist leer. Bitte setzen Sie ein Geldbörsen-Passwort um fortzufahren. Sie können den Passwortschutz später deaktivieren, wenn Sie das möchten." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "Geldbörsen-Passwörter stimmen nicht überein. Bitte bestätigen Sie das Passwort, das Sie für Ihre Geldbörse festlegen möchten, indem Sie das gleiche Passwort zweimal eingeben." @@ -6924,7 +6924,7 @@ msgstr "Geldbörsen-Passwörter stimmen nicht überein. Bitte bestätigen Sie da msgid "Wallet removed: {}" msgstr "Geldbörse entfernt: {}" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "Geldbörse erfolgreich umbenannt" @@ -6932,7 +6932,7 @@ msgstr "Geldbörse erfolgreich umbenannt" msgid "Wallet type" msgstr "Typ der Geldbörse" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "Geldbörsen" @@ -6965,11 +6965,11 @@ msgstr "Wir garantieren nicht, dass BIP39-Import in ViLight immer verfügbar sei msgid "We encountered an error while connecting to your device:" msgstr "Beim Verbinden mit dem Gerät ist ein Fehler aufgetreten:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "Wir werden diese Geldbörse markieren Touch-/Face-ID zu verwenden, aber dies ist derzeit auf dem Gerät deaktiviert. Bitte aktivieren Sie Touch-/Face-ID in den iOS-Einstellungen, um Biometrie für diese Geldbörse zu verwenden." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "Willkommen bei" @@ -7018,32 +7018,32 @@ msgid "Write down the seed word shown on your {}" msgstr "Schreiben Sie das Seed-Wort auf, das auf Ihrem {} gezeigt wird" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "Falscher Schlüsseltyp" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Falsche Signatur" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "Ja" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "Sie scheinen mehr als ein Element eingegeben zu haben. Jede Geldbörse kann nur einen einzigen Generalschlüssel haben. Um mehrere Generalschlüssel zu verwenden, erstellen Sie eine neue Geldbörse für jeden Schlüssel." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "Sie scheinen keine gültigen Bitcoin-Cash-Adressen oder privaten Schlüssel eingegeben zu haben." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "Sie sind dabei, die Geldbörse '{}' zu löschen. Wenn Sie keine anderen Kopien dieser Geldbörse haben oder Sie den Seed nicht aufgeschrieben haben, können Sie Geld verlieren!\n\n" @@ -7054,7 +7054,7 @@ msgid "You are already on the latest version of ViLight." msgstr "Sie haben bereits die neueste Version von ViLight." #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Du folgst dem Zweig" @@ -7071,17 +7071,17 @@ msgstr "Sie geben jetzt ungemischte Coins aus. Sind Sie sicher?" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "Sie registrieren ein neues Cash-Account für Ihre Adresse
{address}
" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "Sie benennen die aktuell geöffnete verschlüsselte Geldbörse '{}' um." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "Sie möchten die aktuell aktive Geldbörse löschen. Um diese Geldbörse zu löschen, wechseln Sie bitte auf eine andere Geldbörse, und wählen Sie diese Option erneut auf dieser Geldbörse." #: gui/qt/__init__.py:641 plugins/labels/qt.py:91 msgid "You are using ViLight in offline mode; restart ViLight if you want to get connected" -msgstr "Electron-Cash wird im Offline-Modus verwendet. Starten Sie Electron-Cash neu, um sich zu verbinden" +msgstr "Vilight" wird im Offline-Modus verwendet. Starten Sie Electron-Cash neu, um sich zu verbinden" #: gui/qt/main_window.py:1319 msgid "You are using a non-deterministic wallet, which cannot create new addresses." @@ -7095,7 +7095,7 @@ msgstr "Du verwendest eine OP_RETURN-Nachricht. Dies wird dauerhaft in die Block msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "Sie können einen Server aus dieser Liste hinzufügen oder entfernen und optional wählen nur mit bevorzugten Servern zu verbinden." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "Sie können auch eine neue Geldbörse erstellen, indem Sie die Option \"Neue Geldbörse hinzufügen\" auswählen." @@ -7103,11 +7103,11 @@ msgstr "Sie können auch eine neue Geldbörse erstellen, indem Sie die Option \" msgid "You can download the new version from:
{}" msgstr "Du kannst die neue Version herunterladen von:
{}" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "Du kannst so viele Geldbörsen haben wie du möchtest! Wähle aus einer der folgenden Optionen:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "Sie können eine Geldbörse wiederherstellen, egal von welcher ViLight Version diese erstellt wurde." @@ -7119,11 +7119,11 @@ msgstr "Du kannst den Homescreen auf deinem Gerät einstellen, um ihn zu persona msgid "You cannot access your coins or a backup without the password." msgstr "Sie können ohne das Passwort nicht auf die Coins oder ein Backup zugreifen." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "Sie haben den Text 'Löschen' im vorherigen Dialog nicht eingegeben. Für Ihre Sicherheit wurde die Geldbörsen-Datei nicht gelöscht." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "Sie haben noch keine Kontakte. Erstellen Sie jetzt einen neuen Kontakt!" @@ -7152,7 +7152,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or msgstr "Sie können optional eine OP_RETURN-Nachricht an die Zahlungs-URI und/oder QR, die Sie generieren, anhängen.\n\n" "Hinweis: Nicht alle Wallets unterstützen OP_RETURN Parameter, also stellen Sie sicher, dass die Wallet des anderen OP_RETURN URIs unterstützt." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "Sie können diese Zahlungsanfrage als 'vitae:' Stil URI oder als QR-Code-Bild teilen." @@ -7170,9 +7170,9 @@ msgstr "Sie können das \"Hardware-Geldbörsen-Unterstützung\" Werkzeug (unten) #: plugins/keepkey/qt.py:27 plugins/trezor/qt.py:25 msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." -msgstr "Sie müssen eine weitere Electron-Cash-Geldbörse für jede Passphrase erstellen, da sie unterschiedliche Adressen generieren. Das Benutzen einer anderen Passphrase führt nicht zum Verlust der Geldbörse, jede ist weiterhin hinter ihrer Passphrase erreichbar." +msgstr "Sie müssen eine weitere Vilight-Geldbörse für jede Passphrase erstellen, da sie unterschiedliche Adressen generieren. Das Benutzen einer anderen Passphrase führt nicht zum Verlust der Geldbörse, jede ist weiterhin hinter ihrer Passphrase erreichbar." -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "Sie müssen diese Transaktion signieren, um eine Transaktions-ID erhalten kann." @@ -7180,7 +7180,7 @@ msgstr "Sie müssen diese Transaktion signieren, um eine Transaktions-ID erhalte msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "Sie sollten den PIN-Schutz aktivieren. Der PIN ist der einzige Schutz für Ihre Bitcoins, wenn das Gerät verloren geht." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "Sie haben den gleichen Namen angegeben!" @@ -7202,14 +7202,14 @@ msgstr "Ihre Ledger Geldbörse möchte Ihnen einen einmaligen PIN-Code mitteilen msgid "Your accounts have been moved to" msgstr "Ihre Konten wurden hierhin verschoben:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "Ihr Biometrie-basierter Schlüssel für diese Geldbörse wurde zurückgesetzt. Das bedeutet, dass Sie Ihr Passwort für diese Geldbörse erneut eingeben müssen.\n\n" "(Dann können Sie Touch-/Face-ID wie zuvor erneut aktivieren.)" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Deine Bitcoins sind mit einem Passwort geschützt. Aber deine Geldbörse ist nicht verschlüsselt." @@ -7219,7 +7219,7 @@ msgstr "Ihre Kontaktliste ist leer." #: plugins/keepkey/qt.py:392 plugins/trezor/qt.py:358 msgid "Your current ViLight wallet can only be used with an empty passphrase. You must create a separate wallet with the install wizard for other passphrases as each one generates a new set of addresses." -msgstr "Ihrr aktuelle Electron-Cash-Geldbörse kann nur mit einer leeren Passphrase genutzt werden. Sie müssen eine separate Geldbörse mit dem Einrichtungsassistenten anlegen um andere Passphrasen zu nutzen, da jede davon eine eigene Geldbörse mit eigenen Adressen generiert." +msgstr "Ihrr aktuelle Vilight-Geldbörse kann nur mit einer leeren Passphrase genutzt werden. Sie müssen eine separate Geldbörse mit dem Einrichtungsassistenten anlegen um andere Passphrasen zu nutzen, da jede davon eine eigene Geldbörse mit eigenen Adressen generiert." #: plugins/keepkey/keepkey.py:337 msgid "Your device firmware is too old" @@ -7230,7 +7230,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "Ihr ganzer Transaktionsverlauf wird erneut vom Server heruntergeladen und von der Blockchain überprüft." #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "Ihre Gebühr ist zu hoch. Maximum ist 50 Sat/byte." @@ -7246,7 +7246,7 @@ msgstr "Die Bezeichnungen wurden exportiert in" msgid "Your labels were imported from" msgstr "Die Bezeichnungen wurden importiert aus" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "Ihre neue importierte Geldbörse wurde erfolgreich erstellt. Möchten Sie jetzt auf diese wechseln?" @@ -7259,7 +7259,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "Ihre eigenen Cash-Accounts werden jetzt angezeigt" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "Ihre Seed-Erweiterung lautet" @@ -7268,12 +7268,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "Ihre Seed-Erweiterung muss zusammen mit Ihrem Seed gespeichert werden." #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Der Seed ist wichtig!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Dein Server ist auf dem Zweig" @@ -7286,7 +7286,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "Ihre Transaktion wurde an den Cosigning-Pool gesandt." #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Ihr Seed zum Generieren der Geldbörse lautet:" @@ -7295,12 +7295,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Ihr Transaktionsverlauf wurde erfolgreich exportiert." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Deine Geldbörse ist nicht geschützt." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Deine Geldbörse ist verschlüsselt und Passwortgeschützt." @@ -7313,7 +7313,7 @@ msgid "Your {} might not have support for this functionality." msgstr "Ihr {} unterstützt diese Funktion leider nicht." #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Anzahl der Nachkommastellen" @@ -7374,7 +7374,7 @@ msgstr "[s] - Zahlungsanweisung senden" msgid "active" msgstr "aktiv" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "und erstellen Sie Ihre Standard-Geldbörse oder stellen Sie eine vorhandene mit einer der folgenden Methoden wieder her" @@ -7383,8 +7383,8 @@ msgid "are frozen" msgstr "sind gesperrt" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "Blöcke" @@ -7392,8 +7392,8 @@ msgstr "Blöcke" msgid "color" msgstr "Farbig" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "Bestätigungen" @@ -7405,7 +7405,7 @@ msgstr "Mitsignierer" msgid "decrypting..." msgstr "entschlüsseln..." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "löschen" @@ -7421,7 +7421,7 @@ msgstr "Gebühr" msgid "initialized" msgstr "Eingerichtet" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "ungültige Elemente werden verworfen" @@ -7446,7 +7446,7 @@ msgid "password incorrect" msgstr "Passwort falsch" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "Bitte warten..." @@ -7481,15 +7481,15 @@ msgstr "Unbestätigt" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "unbekannt" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "Unbekannt (niedrige Gebühr)" @@ -7510,7 +7510,7 @@ msgid "unverified" msgstr "Unverifiziert" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "Beobachtungsmodus" @@ -7518,7 +7518,7 @@ msgstr "Beobachtungsmodus" msgid "wiped" msgstr "Gelöscht" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "ohne die Blockchain herunterzuladen oder einen kompletten Knoten auszuführen." @@ -7583,15 +7583,15 @@ msgstr "{} Kontakte exportiert nach '{}'" msgid "{} contacts successfully imported." msgstr "{} Kontakte erfolgreich importiert." -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "{} in die Zwischenablage kopiert" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "{} Tage" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "{} erfolgreich exportiert" @@ -7599,7 +7599,7 @@ msgstr "{} erfolgreich exportiert" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "{} Firmware-Version zu alt. Bitte aktualisieren Sie auf https://www.ledgerwallet.com" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "{} Stunden" @@ -7607,11 +7607,11 @@ msgstr "{} Stunden" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "{} ist vorübergehend gesperrt - bitte entfernen und erneut wiederholen" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "{} Minuten" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "{} neue Transaktionen erhalten: Gesamtbetrag aller neuen Transaktionen {}" @@ -7623,23 +7623,23 @@ msgstr "{} neue Transaktion(en): {}" msgid "{} not in Vitae mode" msgstr "{} nicht im Vitae Modus" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "{} erfolgreich gespeichert" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "{} in Fotobibliothek gespeichert" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "{} Sekunden" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "{} erfolgreich gesendet" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "{} an Drucker gesendet" diff --git a/contrib/electrum-locale/locale/el_GR/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/el_GR/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/el_GR/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/el_GR/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/el_GR/electron-cash.po b/contrib/electrum-locale/locale/el_GR/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/el_GR/electron-cash.po rename to contrib/electrum-locale/locale/el_GR/vilight.po index 7850ae6fd..0ca5db92e 100644 --- a/contrib/electrum-locale/locale/el_GR/electron-cash.po +++ b/contrib/electrum-locale/locale/el_GR/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 ώρα" msgid "1 week" msgstr "1 εβδομάδα" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Ένα αντίγραφο πορτοφολιού δημιουργήθηκε στο" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Μια προτεινόμενη αμοιβή προστίθεται αυτόματα στο πεδίο αυτό. Μπορείτε να την παρακάμψετε. Η προτεινόμενη αμοιβή αυξάνεται ανάλογα με το μέγεθος της συναλλαγής." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Διεύθυνση" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Ποσό" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Ποσό που ελήφθη:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Ποσό που εστάλη:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "" @@ -815,9 +815,9 @@ msgstr "" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Υπόλοιπο" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Βασική Μονάδα" @@ -864,7 +864,7 @@ msgstr "Βασική μονάδα του πορτοφολιού σου." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Μετάδοση" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "" @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Ακύρωση" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Επιλέξτε ποιος εξερευνητής Μπλόκ θα χρ msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Καθαρισμός" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Επαφές" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Αντιγραφή URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Αντιγραφή στο πρόχειρο" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Ημερομηνία" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Διαγραφή" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Περιγραφή" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Περιγραφή της συναλλαγής (δεν είναι υποχρεωτικό)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Λεπτομέρειες" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Κρυπτογράφηση" msgid "Encrypt wallet file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Κρυπτογράφησε/Αποκρυπτογράφησε το μήνυμα" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Εισάγετε κωδικό" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Σφάλμα" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Ιστορικό Εξαγωγής" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Απέτυχε η ενημέρωση του κωδικού πρόσβασης" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Χρέωση" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Αρχείο" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Εισαγωγή" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Εισαγωγή ιδιωτικών κλειδιών" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Πληροφορίες" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Είσαγωγή ωμής συναλλαγής" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Εισροές" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Ανεπαρκές χρηματικό υπόλοιπο" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Μη έγκυρη διεύθυνση" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Μη έγκυρο ποσό" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "Παραστατικά" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "Φορτώστε την συναλλαγή" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "Προτεύοντα Δημόσια Κλειδιά" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Όνομα" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Δίκτυο" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Ποτέ" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Νέα Επαφή" @@ -3766,19 +3766,19 @@ msgstr "Νέα Επαφή" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Νέα επαφή" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Επόμενο" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3809,7 +3809,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Κανένα μύνημα ή ποσό" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "Δεν υπάρχουν άλλες διευθύνσεις στο πορτοφόλι σας." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Δεν υπάρχουν εξόδοι" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3926,7 +3926,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Δεν συνδέθηκε" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Ο αριθμός με τα μηδενικά που εμφανίζεται μετά την υποδιαστολή. Για παράδειγμα, αν αυτό έχει οριστεί σε 2, το \"1.\" θα εμφανιστεί ως \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "Αποδοχή" @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Εκτός σύνδεσης" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Online Εξερευνητής Μπλόκ" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Εκροές" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "Κωδικός Πρόσβασης" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Δύναμη Κωδικού" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Ο κωδικός ενημερώθηκε επιτυχώς" @@ -4285,7 +4285,7 @@ msgstr "Ο κωδικός ενημερώθηκε επιτυχώς" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "Πληρώστε τώρα" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Πληρώστε στο" @@ -4325,21 +4325,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Η αίτηση πληρωμής έχει λήξει" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Πληρωμή απεστάλει." @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4523,7 +4523,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4564,7 +4564,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4601,14 +4601,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Ιδιωτικό Κλειδί" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Δημόσιο κλειδί" @@ -4682,10 +4682,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "Κωδικός QR" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Λάβετε" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Διευθύνσεις λήψεως" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Κατάργηση" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "Αναφορά Σφαλμάτων" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4913,7 +4913,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Ζητηθέν ποσό" @@ -4921,8 +4921,8 @@ msgstr "Ζητηθέν ποσό" msgid "Requestor" msgstr "Αιτών" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Αποθήκευση" @@ -5014,8 +5014,8 @@ msgstr "Αποθήκευση" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Λέξη κλειδί" @@ -5104,7 +5104,7 @@ msgstr "Λέξη κλειδί" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "" msgid "Select server manually" msgstr "Επιλέξτε διακομιστή χειροκίνητα" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "Επιλέξτε το αρχείο συναλλαγών σας" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Αποστολή" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "Διακομιστής" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Ρυθμίσεις" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Εμφάνιση ως κώδικα QR" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Υπογραφή" @@ -5476,12 +5476,12 @@ msgstr "Υπογραφή" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Υπογραφή/Πιστοποίηση Μυνήματος" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "Υπογραφή" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Υπογραφή πιστοποιήθηκε" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Κατάσταση" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Κατάσταση:" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Επιτυχία" @@ -5690,13 +5690,13 @@ msgstr "Σαρώστε ιδιωτικά κλειδιά" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Συγχρονισμός..." @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "Το ύψος του τέλους μπορεί να αποφασίζετ msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Το ποσό θα εμφανίζετε με κόκκινο χρώμα, αν δεν έχετε αρκετά χρήματα στο πορτοφόλι σας." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Αυτή είναι ένα πορτοφόλι παρακολούθησης μόνο" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6129,14 +6129,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Αυτές οι λέξεις κλειδιά θα σας επιτρέψουν να ανακτήσετε το πορτοφόλι σας σε περίπτωση βλάβης του υπολογιστή." @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Η συναλλαγή αυτή δεν αποθηκεύεται. Κλείσιμο ούτως ή άλλως;" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Αυτό το πορτοφόλι δεν έχει λέξεις κλειδιά" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Για να βεβαιωθείτε ότι έχετε αποθηκεύσει σωστά τις λέξεις κλειδιά σας, παρακαλώ πληκτρολογήστε τις ξανά εδώ." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Συναλλαγή" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "Ταυτότητα συναλλαγής" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "Ταυτότητα συναλλαγής:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Η συναλλαγή δεν σχετίζετε με το πορτοφόλι σας" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "Συναλλαγή:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "Αδύνατη η δημιουργία CSV αρχείου" msgid "Unable to export history" msgstr "Δεν είναι δυνατή η εξαγωγή του ιστορικού" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6552,7 +6552,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Χρησιμοποιήστε διευθύνσεις εναλλαγής" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6702,7 +6702,7 @@ msgstr "Χρησιμοποιώντας διευθύνσεις εναλλαγής msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "Επαλήθευση" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Προβολή στον εξερευνητή των μπλόκ" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ" @@ -6826,22 +6826,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6926,11 +6926,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6979,32 +6979,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7014,7 +7014,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7031,11 +7031,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7055,7 +7055,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7063,11 +7063,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7079,11 +7079,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7110,7 +7110,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7130,7 +7130,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7138,7 +7138,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7159,13 +7159,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7186,7 +7186,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7202,7 +7202,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7215,7 +7215,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7224,12 +7224,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Οι λέξεις κλειδιά σας είναι σημαντικές!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7242,7 +7242,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7251,12 +7251,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Το ιστορικό του πορτοφολιού σας έχει εξαχθεί με επιτυχία." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7269,7 +7269,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Μηδενικά μετά την υποδιαστολή" @@ -7330,7 +7330,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7339,8 +7339,8 @@ msgid "are frozen" msgstr "είναι παγωμένα" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7348,8 +7348,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7361,7 +7361,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7377,7 +7377,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7402,7 +7402,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "Παρακαλώ περιμένετε..." @@ -7437,15 +7437,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "άγνωστο" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7466,7 +7466,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "παρακολούθηση μονο" @@ -7474,7 +7474,7 @@ msgstr "παρακολούθηση μονο" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7539,15 +7539,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7555,7 +7555,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7563,11 +7563,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7579,23 +7579,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/eo_UY/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/eo_UY/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/eo_UY/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/eo_UY/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/eo_UY/electron-cash.po b/contrib/electrum-locale/locale/eo_UY/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/eo_UY/electron-cash.po rename to contrib/electrum-locale/locale/eo_UY/vilight.po index 1e93515d9..5adbb8377 100644 --- a/contrib/electrum-locale/locale/eo_UY/electron-cash.po +++ b/contrib/electrum-locale/locale/eo_UY/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 horo" msgid "1 week" msgstr "1 semajno" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Sugestita honorario aldoniĝis aŭtomate al tiu kampo. Vi povas transpasi ĝin. La sugestita honorario pligrandiĝas kun la grando de la transakcio." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adreso" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Sumo" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "" @@ -815,9 +815,9 @@ msgstr "" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Bilanco" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "" @@ -864,7 +864,7 @@ msgstr "" msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "" @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Nuligi" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "" msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Vakigi" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Kontaktoj" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Dato" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Forigi" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Priskribo" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Priskribo de la transakcio (ne nepra)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detalo" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Ĉifri" msgid "Encrypt wallet file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Ĉifri/malĉifri Mesaĝo" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Eraro" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "" @@ -3766,19 +3766,19 @@ msgstr "" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3809,7 +3809,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3926,7 +3926,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "" @@ -4285,7 +4285,7 @@ msgstr "" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "" @@ -4325,21 +4325,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "" @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4523,7 +4523,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4564,7 +4564,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4601,14 +4601,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "" @@ -4682,10 +4682,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4913,7 +4913,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "" @@ -4921,8 +4921,8 @@ msgstr "" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "" @@ -5014,8 +5014,8 @@ msgstr "" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5104,7 +5104,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "" msgid "Select server manually" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "" @@ -5476,12 +5476,12 @@ msgstr "" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "" @@ -5690,13 +5690,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "" @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "" msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6129,14 +6129,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "" @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6552,7 +6552,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6702,7 +6702,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "" @@ -6826,22 +6826,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6924,11 +6924,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6977,32 +6977,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7012,7 +7012,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7029,11 +7029,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7053,7 +7053,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7061,11 +7061,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7077,11 +7077,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7108,7 +7108,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7128,7 +7128,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7136,7 +7136,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7157,13 +7157,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7184,7 +7184,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7200,7 +7200,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7213,7 +7213,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7222,12 +7222,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7240,7 +7240,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7249,12 +7249,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7267,7 +7267,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7328,7 +7328,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7337,8 +7337,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7346,8 +7346,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7359,7 +7359,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7375,7 +7375,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7400,7 +7400,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "" @@ -7435,15 +7435,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7464,7 +7464,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "" @@ -7472,7 +7472,7 @@ msgstr "" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7537,15 +7537,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7553,7 +7553,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7561,11 +7561,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7577,23 +7577,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/es_AR/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/es_AR/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/es_AR/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/es_AR/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/es_AR/electron-cash.po b/contrib/electrum-locale/locale/es_AR/vilight.po similarity index 83% rename from contrib/electrum-locale/locale/es_AR/electron-cash.po rename to contrib/electrum-locale/locale/es_AR/vilight.po index 5ea1d8b64..ab6b5ad55 100644 --- a/contrib/electrum-locale/locale/es_AR/electron-cash.po +++ b/contrib/electrum-locale/locale/es_AR/vilight.po @@ -24,7 +24,7 @@ msgstr " (Sin tarifa FX disponible)" msgid " These settings affects the fields in the Send tab" msgstr " Estos ajustes afectan los campos de la pestaña Enviar" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " copiado al portapapeles" @@ -37,7 +37,7 @@ msgstr " {} encontrados" msgid "%2d minutes" msgstr "%2d minutos" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d ítem(s) válido(s)" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "&Dirección a convertir" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Direcciones" @@ -293,7 +293,7 @@ msgstr "(Versiones anteriores a ViLight 3.3.6 produjeron carteras testnet invál msgid "(Only deterministic wallets are supported)" msgstr "(Solo carteras determinísticas son soportadas)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "(Salida del Script)" @@ -325,7 +325,7 @@ msgstr "({} de {}):" msgid "+" msgstr "+" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "..." @@ -346,7 +346,7 @@ msgstr "1 hora" msgid "1 week" msgstr "1 semana" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr ":" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Una copia del archivo de tu cartera fue creado en" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "Una cartera determinística será creada usando la clave privada maestra proporcionada. Esta cartera será capaz de enviar y recibir Vitae libremente." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "Una cartera determinística será creada usando la clave privada maestra proporcionada. Esta cartera será solo-para-ver." @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Una tasa recomendada es agregada automáticamente a este campo. Puedes cambiarla. La tasa recomendada aumenta con el tamaño de transacción." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "Ya existe una cartera con ese nombre. Introducir un nombre diferente para proceder." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "Ya existe una cartera con ese nombre, intentar nuevamente." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "Ya existe una cartera con ese nombre. No se puede proceder." @@ -489,12 +489,12 @@ msgstr "Agregar teclado virtual al diálogo de contraseña." msgid "Add cosigner" msgstr "Agregar cosignatario" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "Agregar nueva cartera" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "Agregar a Contactos" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "Agregando {} de {} de nuevas direcciones a la cartera..." #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Tasas adicionales" @@ -521,23 +521,23 @@ msgstr "Adicionalmente, podrías ser vulnerable a ataques man-in-the-middle." #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Dirección" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "Conversor de Dirección" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "Detalles de Dirección" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "Dirección congelada" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "Dirección no en cartera." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "Dirección a convertir" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Todas" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "Todas las Transacciones" @@ -603,11 +603,11 @@ msgstr "Todas las Transacciones" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "Todo listo." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "Ya Expirado" @@ -619,11 +619,11 @@ msgstr "Ya actualizado" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Monto" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "Monto para salida OP_RETURN debe ser cero." #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Monto recibido:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Monto enviado:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Monto a enviar" @@ -671,7 +671,7 @@ msgstr "Error al transmitir la transacción" msgid "An uninitialized Digital Bitbox is detected." msgstr "Un Digital Bitbox no inicializado fue detectado." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "Error desconocido. No es posible continuar." @@ -683,7 +683,7 @@ msgstr "Un {} sin nombre" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "Todas" @@ -691,7 +691,7 @@ msgstr "Todas" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Apariencia" @@ -718,7 +718,7 @@ msgstr "Estás seguro de que deseas proceder?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "Estás seguro de que quieres desinstalar este plugin?" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "Estás seguro que quieres eliminar este contacto?" @@ -738,7 +738,7 @@ msgstr "MODEM de audio" msgid "Audio Modem Settings" msgstr "Ajustes del Módem de Audio" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "Por favor autenticar" @@ -796,19 +796,19 @@ msgstr "Semillas BIP39 no incluyen numero de versión, lo que hace que la compat #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Volver" @@ -816,9 +816,9 @@ msgstr "Volver" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Saldo" @@ -853,7 +853,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Unidad base" @@ -865,7 +865,7 @@ msgstr "Unidad base de tu cartera." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "Antes de reportar un error, actualizar a la versión más reciente de ViLight (última versión o git) e incluir el número de versión en el reporte." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "Biometría Indisponible" @@ -898,12 +898,12 @@ msgid "Both Receiving & Change (x2)" msgstr "Receptoras y Cambio (x2)" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Transmisión" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Transmitiendo transacción..." @@ -919,7 +919,7 @@ msgstr "CPFP inválido" msgid "CSV" msgstr "CSV" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "Calculando detalles de Tx..." @@ -931,41 +931,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Cancelar" @@ -990,7 +990,7 @@ msgstr "Cancelando..." msgid "Cancelled by user" msgstr "Cancelado por el usuario" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "No Se Puede Eliminar Cartera Activa" @@ -998,13 +998,13 @@ msgstr "No Se Puede Eliminar Cartera Activa" msgid "Cannot add this cosigner:" msgstr "No se puede agregar este cosignatario:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "No puede mostrar la transacción solicitada ya que no tienes una cartera abierta.\n\n" "Abrir una cartera e intentar nuevamente." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "No es posible mostrar la transacción solicitada ya que se tiene un diálogo modal abierto.\n\n" @@ -1018,16 +1018,16 @@ msgstr "No se encuentra librería python para" msgid "Cannot read file" msgstr "No se puede leer el archivo" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "No se puede enviar/recibir nuevas transacciones." #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "No es posible firmar mensajes con este tipo de dirección." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "No es posible especificar claves privadas y direcciones en la misma cartera. Direcciones resultarán en carteras solo-para-ver, y claves privadas en carteras expendedoras. Remover los elementos incompatibles (deslizando a la izquierda)." @@ -1104,7 +1104,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "Dirección Cash" @@ -1112,7 +1112,7 @@ msgstr "Dirección Cash" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "Formato de dirección de CashAddr" @@ -1196,25 +1196,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "División de cadena detectada en el bloque %d" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Cambio" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "Dirección de Cambio" @@ -1230,8 +1230,8 @@ msgstr "Cambiar PIN" msgid "Change Password" msgstr "Cambiar contraseña" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "Cambiar o Establecer Contraseña" @@ -1267,7 +1267,7 @@ msgstr "Hija Paga por Padre" msgid "Child pays for parent" msgstr "Hija paga por padre" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "Seleccione Dirección" @@ -1288,7 +1288,7 @@ msgstr "Elegir archivo de copia de seguridad:" msgid "Choose a password to encrypt your wallet keys." msgstr "Elegir una contraseña para encriptar las claves de su cartera." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "Elegir dirección o ingresar una clave pública" @@ -1329,8 +1329,8 @@ msgstr "Elegir explorador de bloques online para funciones que abren un explorad msgid "Choose..." msgstr "Elegir..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Limpiar" @@ -1381,7 +1381,7 @@ msgstr "Moneda" msgid "Coin & Address are frozen" msgstr "Moneda y Dirección congeladas" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "Información de Moneda" @@ -1414,7 +1414,7 @@ msgid "Coinbase not supported" msgstr "Coinbase no soportada" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "Monedas" @@ -1430,7 +1430,7 @@ msgstr "Monedas (UTXOs) hasta este monto serán seleccionadas para shuffling." msgid "Color theme" msgstr "Theme de color" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "Próximamente" @@ -1446,7 +1446,7 @@ msgstr "Con&sola" msgid "Con&tacts" msgstr "Con&tactos" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "Confirmar Eliminar" @@ -1470,7 +1470,7 @@ msgstr "Confirmar Semilla" msgid "Confirm Seed Extension" msgstr "Confirmar Extensión de Semilla" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "Confirmar Semilla" @@ -1482,7 +1482,7 @@ msgstr "Confirmar Toggle de Protección de Contrafrase" msgid "Confirm Transaction on your {}..." msgstr "Confirmar Transacción en {}..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "Confirmar Contraseña de Cartera" @@ -1555,13 +1555,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "Nodo conectado" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "Conectado a %d nodos." @@ -1582,34 +1582,34 @@ msgstr "Error de conexión" msgid "Connections" msgstr "Conexiones" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "Contacto" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "Info de Contacto" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "Contacto adicionado" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "Contacto guardado" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Contactos" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "Controla tus propias claves privadas" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "Convertir entre formatos Legacy y Cashaddr" @@ -1627,10 +1627,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "Copiar Dirección" @@ -1655,7 +1655,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "Copiar Clave Pública" @@ -1663,7 +1663,7 @@ msgstr "Copiar Clave Pública" msgid "Copy QR Image" msgstr "Copiar QR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "Copiar Script" @@ -1683,7 +1683,7 @@ msgstr "" msgid "Copy URI" msgstr "Copiar URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "Copiar UTXO" @@ -1691,7 +1691,7 @@ msgstr "Copiar UTXO" msgid "Copy and Close" msgstr "Copiar y Cerrar" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "Copiar hash de entrada" @@ -1700,8 +1700,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Copiar al portapapeles" @@ -1768,7 +1768,7 @@ msgstr "No es posible firmar mensaje" msgid "Could not sign message." msgstr "No es posible firmar mensaje." -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "Reporte de Errores" @@ -1776,8 +1776,8 @@ msgstr "Reporte de Errores" msgid "Create" msgstr "Crear" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "Crear Nueva Cartera Estándar" @@ -1785,7 +1785,7 @@ msgstr "Crear Nueva Cartera Estándar" msgid "Create a new seed" msgstr "Crear una nueva semilla" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "Crear un cartera usando una Clave Maestra" @@ -1821,7 +1821,7 @@ msgstr "Tarifa de Tasa Personalizada en Satoshis por byte" msgid "Custom rate: " msgstr "Tarifa personalizada: " -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "Daemon no se estaba ejecutando." @@ -1843,8 +1843,8 @@ msgstr "Oscuro/Claro" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Fecha" @@ -1875,15 +1875,15 @@ msgstr "Predeterminados" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Eliminar" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "Eliminar Cartera" @@ -1895,12 +1895,12 @@ msgstr "Eliminar factura?" msgid "Delete wallet file?" msgstr "Eliminar archivo de cartera?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "Derivación" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "Derivación Inválida" @@ -1908,7 +1908,7 @@ msgstr "Derivación Inválida" msgid "Derivation for {} wallet" msgstr "Derivación por {} cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "Derivando direcciones..." @@ -1916,22 +1916,22 @@ msgstr "Derivando direcciones..." #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Descripción" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Descripción de la transacción (opcional)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detalles" @@ -1981,7 +1981,7 @@ msgstr "Desactivar Contrafrases" msgid "Disabled" msgstr "Desactivado" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "Poco Espacio en Disco" @@ -1998,7 +1998,7 @@ msgid "Do not pair" msgstr "No emparejar" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "No almacenar de forma electrónica." @@ -2030,19 +2030,19 @@ msgstr "Enviar este reporte?" msgid "Do you wish to continue?" msgstr "Continuar?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "Seguir la rama {}@{}?" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "Ocultar progreso de descarga?\n" "(Puedes volver a habilitarlo en Ajustes)" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" @@ -2050,7 +2050,7 @@ msgstr "Usar\n" "{}:{}\n" "como servidor de blockchain?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2070,15 +2070,15 @@ msgstr "Finalizado" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "Descargando Cabezales" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "Descargando cabezales del blockchain..." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "Descargando Cabezales {}% ..." @@ -2094,17 +2094,17 @@ msgstr "Debido a los potenciales riesgos de seguridad, sólo desactivar SSL en c msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "Respalda fácilmente tu cartera con una frase semilla mnemónica." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "Editar Contacto" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Editar tasas manualmente" @@ -2118,7 +2118,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "Antes de solicitar bitcoins a ser enviados a direcciones en esta cartera, asegurarse de poder emparejar con dispositivo, o contar con semilla (y contrafrase, si existe). Caso contrario todos los bitcoins recibidos serán ingastables." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "ViLight no puede continuar porque el dispositivo tiene poco espacio en disco. Liberar espacio en disco e intentar nuevamente." @@ -2127,7 +2127,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "ViLight se comunica con servidores remotos para obtener información sobre tus transacciones y direcciones. Todos los servidores cumplen el mismo propósito solo difiriendo en hardware. En la mayoría de los casos es deseado que ViLight elija uno al azar. Sin embargo es posible seleccionar un servidor manualmente." #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "ViLight se conecta a varios nodos en orden de descargar cabezales de bloque y encontrar el blockchain más extenso." @@ -2135,7 +2135,7 @@ msgstr "ViLight se conecta a varios nodos en orden de descargar cabezales de blo msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "ViLight es una cartera SPV para Vitae" @@ -2159,7 +2159,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "ViLight envía tus direcciones de cartera a un solo servidor, en orden de recibir tu histórico de transacciones." @@ -2200,7 +2200,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "ViLight no pudo abrir archivo de transacción" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "ViLight no pudo analizar la transacción" @@ -2299,12 +2299,12 @@ msgstr "Encriptar" msgid "Encrypt wallet file" msgstr "Encriptar archivo de cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "Encriptar/desencriptar Mensaje" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Encriptar/desencriptar Mensaje" @@ -2328,7 +2328,7 @@ msgstr "Encriptado y desencriptado no son actualmente soportados para {}" msgid "Encryption and decryption are not implemented by {}" msgstr "Encriptado y desencriptado no están implementados por {}" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "Disfruta alta seguridad" @@ -2345,10 +2345,10 @@ msgid "Enter Passphrase" msgstr "Ingresar Contrafrase" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Ingresar Contraseña" @@ -2376,7 +2376,7 @@ msgstr "Ingresar lista de direcciones Vitae (esto creará una cartera solo-para- msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Ingresar lista de salidas en el campo 'Pagar a'." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "Ingresar lista de claves privadas para crear cartera expendedora regular. Alternativamente, es posible crear cartera solo-para-ver ingresando lista de direcciones Vitae." @@ -2408,11 +2408,11 @@ msgstr "Ingresar clave de cosignatario" msgid "Enter cosigner seed" msgstr "Ingresar semilla de cosignatario" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "Ingresar nuevo nombre de cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "Ingresar o seleccionar dirección" @@ -2445,7 +2445,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de msgstr "Ingresar las palabras de recuperación usando los botones mostrados en el dispositivo. También se puede usar el teclado numérico.\n" "Usar RETROCESO para volver una opción o una palabra.\n" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "Ingresar contraseña nuevamente" @@ -2476,17 +2476,17 @@ msgid "Enter your password or choose another file." msgstr "Ingresar contraseña o elegir otro archivo." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Ingresar contraseña para proceder" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "Ingresar frase semilla" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "Ingresar derivación de cartera." @@ -2505,11 +2505,11 @@ msgstr "Borrar el Digital Bitbox" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Error" @@ -2541,7 +2541,7 @@ msgstr "Error: duplicar clave pública maestra" msgid "Exit ViLight" msgstr "Salir de ViLight" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "Conf. esperada." @@ -2578,7 +2578,7 @@ msgstr "Histórico de Exportación" msgid "Export file" msgstr "Exportar archivo" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "Exportando Cartera..." @@ -2591,7 +2591,7 @@ msgid "Extend this seed with custom words" msgstr "Extender esta semilla con palabras personalizadas" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "Dirección Externa" @@ -2617,7 +2617,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "Falla al enviar transacción al grupo de cosignatarios." #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Falla al actualizar contraseña" @@ -2626,12 +2626,12 @@ msgid "Failed to verify SSL certificate" msgstr "Falla de verificación del certificado SSL" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Tasa" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "Edición manual de tasa" @@ -2649,27 +2649,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "Adicionar dirección de email para proveer mayores detalles si se desea, pero notar que aparecerá en el asunto relacionado en github." #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Tasas" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Fiat" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "Monto fiat" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Moneda fiat" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Archivo" @@ -2690,11 +2690,11 @@ msgid "Fixed rate: " msgstr "Tarifa fija: " #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Seguir esta rama" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2731,8 +2731,8 @@ msgid "Format: address, amount" msgstr "Formato: dirección, monto" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "Congelar" @@ -2774,11 +2774,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "Congelado" @@ -2790,7 +2790,7 @@ msgstr "Completo" msgid "Full 2FA enabled. This is not supported yet." msgstr "2FA completo habilitado. Esto no es aún compatible." -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "Con Fondos" @@ -2818,24 +2818,24 @@ msgstr "Generalmente, una tasa de 1.0 sats/B es una buena tarifa mínima para qu msgid "Generate a new random wallet" msgstr "Generar cartera nueva aleatoriamente" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "Generando semilla..." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "Generando direcciones..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "Generando cartera..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "Comenzar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "Comienza ahora" @@ -2872,10 +2872,10 @@ msgid "Hardware Wallet Support..." msgstr "Soporte de Cartera Hardware..." #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Altura" @@ -2887,11 +2887,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Aquí está su clave pública maestra." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "Ocultar Progreso de Descarga" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "Ocultar progreso de descarga" @@ -2918,8 +2918,8 @@ msgstr "Pantalla de inicio" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Host" @@ -2972,7 +2972,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "Si 'Conectar solo a servidores preferidos' está habilitado, ViLight solo se conectará a servidores marcados como 'preferidos' ({})." #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "Si auto-conectar esta habilitado, ViLight siempre usará el servidor que esta en el blockchain más largo." @@ -2993,7 +2993,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "En caso de no haber suficientes fondos mezclados, esperar unos minutos mientras las monedas son mezcladas en el trasfondo." #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "Si está desabilitado, tienes que elegir el servidor que deseas usar. ViLight notificará si ese servidor esta retrasado." @@ -3022,7 +3022,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "En caso de no estar seguro, la mayoría de las veces es prudente dejar esta opción deshabilitada. Sin embargo, dejarlo habilitado es más prudente (un poco desalentador para los nuevos operadores de servidores que desean poblar sus servidores)." #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "Si no estás seguro que es esto, deja este campo inalterado." @@ -3067,12 +3067,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "Si quieres que la cartera use direcciones Vitae usa m/44'/445'/0'" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "Si quieres que la cartera use direcciones Bitcoin legacy usa m/44'/0'" @@ -3089,12 +3089,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "Si tu cartera contiene fondos, asegúrate de haber guardado la semilla." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "Imagen" @@ -3104,14 +3104,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "Importar Direcciones o Claves Privadas" @@ -3119,7 +3119,7 @@ msgstr "Importar Direcciones o Claves Privadas" msgid "Import Vitae Addresses" msgstr "Importar Direcciones Bitcoin" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "Importar Direcciones Vitae o Claves Privadas" @@ -3147,19 +3147,19 @@ msgstr "Importar claves privadas" msgid "Importing encrypted files is not supported." msgstr "Importar archivos encriptados no es soportado." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "Importar estas direcciones las añadirá a la cartera solo-para-ver." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "Importar estas direcciones creará una cartera solo-para-ver." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "Importar estas claves agregará direcciones y claves a la cartera expendedora." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "Importar estas claves creará una cartera expendedora plena." @@ -3213,8 +3213,8 @@ msgstr "Index" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Información" @@ -3238,8 +3238,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Monto de entrada" @@ -3251,7 +3251,7 @@ msgstr "Dato de entrada no es un hash de transacción." msgid "Input raw transaction" msgstr "Ingresar transacción bruta" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Entradas" @@ -3274,8 +3274,8 @@ msgid "Installed &Plugins" msgstr "&Plugins Instalados" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Fondos insuficientes" @@ -3287,25 +3287,25 @@ msgstr "Integración" msgid "Internal error converting image" msgstr "Error interno al convertir imagen" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "Inválido" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Dirección Inválida" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Monto Inválido" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "Dirección Vitae Inválida." @@ -3338,9 +3338,9 @@ msgstr "Clave Maestra Inválida" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "PIN invalido - desconectar {} y conectarlo nuevamente antes de reintentar" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "Código QR Inválido" @@ -3349,7 +3349,7 @@ msgid "Invalid amount" msgstr "Monto Inválido" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "Bitcoincash URI inválido:" @@ -3361,7 +3361,7 @@ msgstr "Canal inválido." msgid "Invalid lines found:" msgstr "Líneas inválidas encontradas:" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "Nombre invalido, intentar nuevamente." @@ -3381,7 +3381,7 @@ msgstr "Facturas" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "Parece que la derivación especificada es inválida. Internar nuevamente" @@ -3494,7 +3494,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "Dirección legacy" @@ -3534,7 +3534,7 @@ msgstr "Cargar transacción" msgid "Loading backup..." msgstr "Cargando copia de seguridad..." -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "Locktime" @@ -3587,12 +3587,12 @@ msgstr "Asegurarse de tener la frase semilla o las claves privadas antes de soli msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "Tasa manual" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "Clave Maestra" @@ -3608,16 +3608,16 @@ msgstr "Claves Públicas Maestras" msgid "Matrix" msgstr "Matriz" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Max" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Tasa max excedida" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "Tasa estática max" @@ -3654,7 +3654,7 @@ msgid "Minimum coin:" msgstr "Moneda mínima:" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Tasa de minado" @@ -3666,7 +3666,7 @@ msgstr "Falta libsecp256k1" msgid "Mobile pairing options" msgstr "Opciones de emparejamiento de celular" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "Modificar configuraciones de contraseña y encriptado" @@ -3690,15 +3690,15 @@ msgstr "Cartera multifirma" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "Dirección de Cambio" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "Mi Dirección Receptora" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "Mi Cartera" @@ -3708,12 +3708,12 @@ msgstr "NO PIN DE DISPOSITIVO - ver arriba" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Nombre" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "Nombre está vacío" @@ -3726,11 +3726,11 @@ msgid "Needs update" msgstr "Se necesita actualización" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Red" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "Ajustes de Red" @@ -3743,7 +3743,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Nunca" @@ -3753,7 +3753,7 @@ msgid "Never ask for this wallet" msgstr "Nunca preguntar para esta cartera" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Nunca reveles tu semilla." @@ -3762,7 +3762,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Nunca usarla en sitios web." @@ -3771,8 +3771,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Nuevo contacto" @@ -3780,19 +3780,19 @@ msgstr "Nuevo contacto" msgid "New Password:" msgstr "Nueva contraseña:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "Nueva Cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "Nueva Cartera Creada" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Nuevo contacto" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "Nueva transacción recibida: {}" @@ -3801,21 +3801,21 @@ msgid "New transaction: {}" msgstr "Nueva transacción: {}" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Siguiente" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "No" @@ -3823,7 +3823,7 @@ msgstr "No" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "Sin Coincidencia" @@ -3839,15 +3839,15 @@ msgstr "Código QR no encontrado" msgid "No QR code was found in the selected image file." msgstr "Código QR no encontrado en la imagen seleccionada." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Sin Cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "Ninguna Cartera Abierta" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "Ninguna dirección coincide con el criterio especificado" @@ -3855,7 +3855,7 @@ msgstr "Ninguna dirección coincide con el criterio especificado" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "Direcciones con histórico de transacciones no encontradas para el rango de escaneo especificado." -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "Sin monedas" @@ -3884,7 +3884,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Sin mensaje o monto" @@ -3893,16 +3893,16 @@ msgid "No more addresses in your wallet." msgstr "Sin más direcciones en cartera." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Sin salidas" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "Ninguna solicitud de pago encontrada. Crear una." #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "Sin dirección receptora" @@ -3914,25 +3914,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "Transacción no existente en mempool o blockchain." -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "Sin transacciones" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "Transacciones no encontradas en blockchain." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "Sin ítems válidos. No se puede proceder -- volver e intentar nuevamente." #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Ninguno" @@ -3940,7 +3940,7 @@ msgstr "Ninguno" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "Normalmente, al (re)generar una cartera usando su semilla, las direcciones son derivadas y adicionadas a la cartera hasta que un bloque de direcciones es encontrado sin histórico. Esto es referido como gap." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "No Eliminados" @@ -3962,8 +3962,8 @@ msgstr "No es archivo de texto" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "No conectado" @@ -4020,18 +4020,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Número de ceros mostrados tras símbolo decimal. Por ejemplo, si está configurada en 2, \"1.\" se mostrará como \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "OK" @@ -4064,11 +4064,11 @@ msgstr "Script OP_RETURN demasiado grande, no debe ser mayor de 223 bytes" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Offline" @@ -4103,13 +4103,13 @@ msgstr "En la mayoría de los sistemas es posible hacerlo con este comando:" msgid "One output per line." msgstr "Una salida por línea." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "Online" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Explorador de Bloques Online" @@ -4137,11 +4137,11 @@ msgstr "Sólo salidas de dirección son soportadas por {}" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "Solo limpiar dispositivo si se tiene la semilla de recuperación escrita y las carteras del dispositivo están vacías, caso contrario los bitcoins se perderán para siempre." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "Abrir Nueva Cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "Abrir Cartera" @@ -4161,12 +4161,12 @@ msgstr "OpenAlias" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "Registro OpenAlias, utilizado para recibir monedas y firmar solicitudes de pago." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "Abriendo cartera encriptada: '{}'" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "Abriendo {}..." @@ -4179,12 +4179,12 @@ msgid "Optional Features" msgstr "Funcionalidades Opcionales" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Opciones" @@ -4193,8 +4193,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "Firmware {} para dispositivo {} desactualizado. Descargar firmware en {}" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4209,7 +4209,7 @@ msgstr "Monto de salida" msgid "Output point" msgstr "Punto de salida" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Salidas" @@ -4262,21 +4262,21 @@ msgstr "Contrafrases te permiten acceder a nuevas carteras, cada una oculta detr msgid "Password" msgstr "Contraseña" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "Contraseña Incorrecta" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "Contraseña Requerida" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Seguridad de Contraseña" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Contraseña desactivada, esta cartera no está protegida" @@ -4291,7 +4291,7 @@ msgid "Password must have less than 64 characters." msgstr "La contraseña debe menos de 64 caracteres." #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Contraseña actualizada con suceso" @@ -4299,7 +4299,7 @@ msgstr "Contraseña actualizada con suceso" msgid "Password:" msgstr "Contraseña:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "Pegar una dirección o usar QR" @@ -4325,9 +4325,9 @@ msgid "Pay Now" msgstr "Pagar Ahora" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Pagar a" @@ -4339,21 +4339,21 @@ msgstr "Pagar a varios" msgid "Payment Request" msgstr "Solicitud de pago" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "Error de Solicitud de Pago" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Solicitud de pago ha expirado" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "Solicitud de pago guardada" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Pago enviado." @@ -4382,7 +4382,7 @@ msgid "Players" msgstr "Jugadores" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "Describir brevemente lo que condujo al error (opcional):" @@ -4414,7 +4414,7 @@ msgstr "Ingresar clave pública maestra (xpub) de cosigntario." msgid "Please enter the master public key of cosigner #{}:" msgstr "Ingresar clave pública maestra de cosigntario #{}:" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "Ingresar nuevo nombre para la cartera:" @@ -4449,19 +4449,19 @@ msgstr "Instalar las librerías relevantes para estos plugins:" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "Asegurarse de que 'Soporte para Navegador' esa deshabilitado en {}." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "Proveer clave pública o seleccionar dirección" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "Proveer clave pública para usar en desencriptado" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "Proveer firma y mensaje para verificar" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "Proveer texto encriptado para desencriptar" @@ -4482,7 +4482,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "Guardar estas %d palabras en papel (el orden es importante). " @@ -4495,7 +4495,7 @@ msgstr "Seleccionar que dispositivo {} a usar:" msgid "Please share it with your cosigners." msgstr "Compartir con cosignatarios." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "Especificar clave maestra para continuar. Las claves válidas son largas series que comienzan con xpub/ypub/zpub o xprv/yprv/zprv." @@ -4519,8 +4519,8 @@ msgstr "Actualizar a v0.1.27 o mayor" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "Visitar esta página para obtener instrucciones de cómo corregir la situación:" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Por favor esperar" @@ -4538,7 +4538,7 @@ msgstr "Por favor esperar..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "Escribir y guardar la frase semilla. Es la única via de recuperar tus fondos si olvidas tu contraseña o tu dispositivo es robado." @@ -4571,7 +4571,7 @@ msgid "Pool size" msgstr "Tamaño del pool" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Puerto" @@ -4579,7 +4579,7 @@ msgstr "Puerto" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "Publicar una nota PERMANENTE en el blockchain VITAE como parte de esta transacción." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "Operación Potencialmente Insegura" @@ -4608,7 +4608,7 @@ msgstr "Presionar \"Siguiente\" para abrir cartera." msgid "Press Enter" msgstr "Pressionar Intro" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Vista previa" @@ -4616,14 +4616,14 @@ msgstr "Vista previa" msgid "Privacy Warning" msgstr "Advertencia de Privacidad" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "Clave Privada" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Clave privada" @@ -4640,7 +4640,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Proceder?" @@ -4685,7 +4685,7 @@ msgid "Proxy user" msgstr "Usuario proxy" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Clave pública" @@ -4697,10 +4697,10 @@ msgstr "Claves públicas" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4709,9 +4709,9 @@ msgid "QR Reader Error" msgstr "Error de Lector QR" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "Código QR" @@ -4739,7 +4739,7 @@ msgstr "Lector QR no cargó. Esto puede deberse por estar usando una versión an msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "Pregunta" @@ -4786,8 +4786,8 @@ msgid "Rebuild this wallet's history now?" msgstr "Reconstruir el histórico de esta cartera ahora?" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Recibir" @@ -4800,13 +4800,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "Receptora" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "Dirección Receptora" @@ -4814,7 +4814,7 @@ msgstr "Dirección Receptora" msgid "Receiving Addresses Only" msgstr "Sólo Direcciones Receptoras" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Dirección receptora" @@ -4827,11 +4827,11 @@ msgid "Recover from a seed you have previously written down" msgstr "Recuperar usando semilla previamente guardada" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Redimir Script" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "Reingresar frase semilla" @@ -4853,10 +4853,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Remover" @@ -4878,20 +4878,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "Renombrar" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "Renombrar Cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "Reportar Contenidos" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "Reporte Enviado" @@ -4903,17 +4903,17 @@ msgstr "Reportar Errores" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "Solicitar URI" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Solicitud expira" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "Solicitar pago" @@ -4929,7 +4929,7 @@ msgstr "Solicitud enviada." msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Monto solicitado" @@ -4937,8 +4937,8 @@ msgstr "Monto solicitado" msgid "Requestor" msgstr "Solicitante" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Solicitudes" @@ -4971,8 +4971,8 @@ msgstr "Resolver Problema de Servidor..." msgid "Restart the CashShuffle plugin now?" msgstr "Reiniciar plugin CashShuffle ahora?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "Restaurar con Semilla" @@ -5016,13 +5016,13 @@ msgstr "Certificado SSL usado para firmar solicitudes de pago." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "SSL es usado para autenticar y encriptar las conexiones con los servidores blockchain." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "Satoshi Nakamoto" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Guardar" @@ -5030,8 +5030,8 @@ msgstr "Guardar" msgid "Save QR Image" msgstr "Guardar Imagen QR" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "Guardar Cartera" @@ -5047,7 +5047,7 @@ msgstr "Guardar factura como archivo" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "Guardar rótulos de cartera en servidor remoto, y sincronizarlos a través de los múltiples dispositivos donde usas ViLight." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "Guardar/Exportar Cartera" @@ -5076,7 +5076,7 @@ msgid "Scrambled words" msgstr "Palabras revueltas" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "Tipo de script" @@ -5094,11 +5094,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "Reiniciar Enclave Seguro" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "Enclave Seguro Indisponible" @@ -5111,8 +5111,8 @@ msgid "Security Warning" msgstr "Aviso de Seguridad" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Semilla" @@ -5120,7 +5120,7 @@ msgstr "Semilla" msgid "Seed Entered" msgstr "Semilla Ingresada" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "Ingresar Semilla" @@ -5180,7 +5180,7 @@ msgstr "Auto-seleccionar servidor" msgid "Select server manually" msgstr "Seleccionar servidor manualmente" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "Seleccionar cuándo la solicitud de pago debe expirar" @@ -5205,9 +5205,9 @@ msgid "Select your transaction file" msgstr "Seleccionar archivo de transacción" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Enviar" @@ -5239,7 +5239,7 @@ msgstr "Enviar al altavoz" msgid "Send via e-mail" msgstr "Enviar por correo electrónico" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "Enviando Reporte..." @@ -5252,7 +5252,7 @@ msgstr "Servidor" msgid "Server Error" msgstr "Error de Servidor" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "Servidor con Retraso" @@ -5273,7 +5273,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "Servidor retrasado ({} bloques)" @@ -5309,46 +5309,46 @@ msgstr "Configurar PIN" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Ajustes" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "Compartir Solicitud" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "Compartir imagen QR..." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "Compartir como URI..." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "Pedido para compartir" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "Compartir/Guardar QR..." -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "Compartir/Guardar..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Mostrar" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "Mostrar dirección QR" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "Mostrar Todas las Transacciones" @@ -5356,20 +5356,20 @@ msgstr "Mostrar Todas las Transacciones" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "Mostrar Info de Moneda" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "Mostrar Monedas (UTXOs)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "Mostrar Contacto" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "Mostrar balance Fiat para direcciones" @@ -5385,14 +5385,14 @@ msgstr "" msgid "Show QR Code" msgstr "Mostrar Código QR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "Mostrar Script QR" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Mostrar como código QR" @@ -5405,11 +5405,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Mostrar histórico de tarifas" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "Mostrar QR del hash de entrada" @@ -5484,7 +5484,7 @@ msgid "Shuffling Paused" msgstr "Mezcla Pausada" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Firmar" @@ -5492,12 +5492,12 @@ msgstr "Firmar" msgid "Sign all transactions using Schnorr signatures." msgstr "Firmar todas las transacciones usando firmas Schnorr." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "Firmar/Verificar Mensaje" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Firmar/Verificar Mensaje" @@ -5510,7 +5510,7 @@ msgid "Signature" msgstr "Firma" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Firma verificada" @@ -5531,17 +5531,17 @@ msgid "Signing message..." msgstr "Firmando mensaje..." #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Firmando transacción..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "Firmar con una dirección significa firmar con la correspondiente clave privada, y verificar con la correspondiente clave pública. La dirección que ingresaste no contienen una única clave pública, por lo que esta operación no puede realizarse." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Tamaño:" @@ -5555,12 +5555,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "Algunos fondos no mezclados pueden ser temporalmente bloqueados durante el proceso de mezcla. En caso de querer desbloquear esos fondos inmediatamente, usar el botón 'Pausar Mezcla''." #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "Algo salió mal ejecutando ViLight." #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "Perdón!" @@ -5569,11 +5569,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Fuente" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "Especificar clave maestra para re-crear cartera determínistica." @@ -5586,11 +5586,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "Gastar" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "Gastar De" @@ -5606,20 +5606,20 @@ msgstr "Gastar No Mezclados" msgid "Spend from" msgstr "Gastar de" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "Gastar de esta Dirección" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "Gastar de esta UTXO" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "Gastar de esta UTXO + Seleccionada" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Gastar solo monedas confirmadas" @@ -5643,7 +5643,7 @@ msgstr "Gastar y vincular monedas con CashSuffle desactivado puede comprometer l msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "Gastar y vincular estas monedas puede comprometer la privacidad no sólo de nuevas monedas recibidas, sino también los anteriores gastos de monedas mezcladas." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "Cartera Estándar" @@ -5658,15 +5658,15 @@ msgstr "Iniciar Scan" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Estatus" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Estatus:" @@ -5675,10 +5675,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "Paso {} 24. Ingresar palabra semilla como explicado en {}:" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Suceso" @@ -5706,13 +5706,13 @@ msgstr "Barrer claves privadas" msgid "Synchronize now?" msgstr "Sincronizar ahora?" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "Sincronizando" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Sincronizando..." @@ -5724,27 +5724,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "Cartera TREZOR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "Tocar para agregar descripción" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "Tocar para agregar texto..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "Tocar para ingresar contraseña" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "Tocar para ingresar texto..." #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "Texto copiado al portapapeles" @@ -5774,20 +5774,20 @@ msgstr "Los desarrolladores de ViLight NO auditan o vetan ningún plugin." msgid "The PIN cannot be longer than 9 characters." msgstr "El PIN no puede tener más de 9 caracteres." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "El código QR contiene multiples salidas. Actualmente son solo soportadas salidas individuales.\n" "Por favor intentar nuevamente." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "El código QR no parece ser una dirección VITAE o un pedido de pago válido.\n" "Por favor intentar nuevamente." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "El código QR no parece ser una dirección VITAE válida.\n" @@ -5809,10 +5809,10 @@ msgstr "El monto de tasa puede ser decidido libremente por el remitente. Sin emb msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "El monto será mostrado en rojo si no existen suficientes fondos en tu cartera." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "Cámara no disponible para lectura de códigos QR" @@ -5864,7 +5864,7 @@ msgstr "Lo siguiente no pudo ser importado" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "El formato de su cartera de '%s' debe ser actualizado por ViLight. Este cambio no será compatible en dirección opuesta" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "El mensaje ha sido desencriptado con suceso" @@ -5873,11 +5873,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "La mnemónica necesita ser de 12, 18 o 24 palabras." #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "Operación no definida. No solo en ViLight, sino en general." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "Contraseña incorrecta para esta cartera encriptada, intentar nuevamente." @@ -5929,22 +5929,22 @@ msgstr "El manifiesto del plugin carece de un nombre de paquete válido." msgid "The plugin manifest lacks a valid version." msgstr "El manifiesto del plugin carece de una versión válida." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "La clave provista no parece ser una clave maestra válida. Claves válidas son largas cadenas comenzando con xpub/ypub/zpub o xprv/yprv/zprv.\n" "Intentar nuevamente." -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "La transacción solicitada ha sido retirada del histórico de la cartera.\n\n" -"si el problema persiste, entrar en contacto via electroncash.org." +"si el problema persiste, entrar en contacto via https://www.vitaetoken.io/." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "La semilla ingresada no parece ser una semilla de cartera válida." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "La semilla ingresada no coincide con la semilla generada. Volver a la pantalla anterior y revisar, luego intentar nuevamente." @@ -5956,7 +5956,7 @@ msgstr "El archivo seleccionado parece ser un archivo binario." msgid "The server did not answer; network may be down." msgstr "El servidor no responde, la red puede estar caída." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "La firma para el mensaje provisto ha sido pegada en el campo adecuado." @@ -5972,7 +5972,7 @@ msgstr "La clave WIF especificada '{}' es una clave WIF p2sh. Estos tipos de cla msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "La clave pública especificada no puede desencriptar el texto encriptado.\n" @@ -6050,7 +6050,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" msgstr "El dispositivo {} se encuentra en estado inconsistente.\n\n" "Puede ser requerido desconectar el dispositivo, conectarlo nuevamente y reiniciar la acción." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "No hay transacciones para esta cartera en blockchain." @@ -6077,11 +6077,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Blockchain es usado para verificar las transacciones enviadas por tu servidor de transacciones." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "Este dispositivo carece de un servicio seguro de enclave. Por lo tanto la autenticación de cartera basada en Touch/Face ID esta indisponible." @@ -6114,17 +6114,17 @@ msgid "This is a preferred server" msgstr "Este es un servidor preferido" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Esta es una cartera solo-para-ver" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "Esta es una cartera solo-para-ver." @@ -6133,7 +6133,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "Esta es la tarifa de tasa que se usará para esta transacción." #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Esta es la altura de tu copia local de blockchain." @@ -6142,12 +6142,12 @@ msgid "This may result in higher transactions fees." msgstr "Esto puede resultar en mayores tasas de transacción." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "Esto significa que no podrás gastar Vitae con ella." #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Esta solicitud de pago será firmada." @@ -6155,14 +6155,14 @@ msgstr "Esta solicitud de pago será firmada." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "Este plugin facilita el uso de carteras multifirmas." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "Esta solicitud expira: {}" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Esta semilla te permitirá recuperar tu cartera en caso de un fallo del computador." @@ -6178,7 +6178,7 @@ msgstr "Este servidor continúa indexando transacciones. Cambiar a otro servidor msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "Este modo de gasto es el mismo que versiones anteriores de ViLight, que no ofrecía CashShuffle." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "Esta cartera expendedora no está encriptada ni protegida por contraseña. Compartirla por internet puede resultar en que otros intercepten tus datos y potencialmente pierdas tus fondos.\n\n" @@ -6189,7 +6189,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "Esta cartera testnet tiene un formato de clave maestra inválido." #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "Esta herramienta ayuda a convertir formatos de direcciones Vitae.\n" @@ -6203,7 +6203,7 @@ msgstr "Esta herramienta instala cartera hardware \"udev rules\" en tu sistema." msgid "This transaction is not saved. Close anyway?" msgstr "Transacción no guardada. Cerrarla de cualquier forma?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "Esta transacción no está firmada y por lo tanto carece de un ID de transacción." @@ -6211,16 +6211,16 @@ msgstr "Esta transacción no está firmada y por lo tanto carece de un ID de tra msgid "This type of script is not supported with {}." msgstr "Este tipo de script no es soportado con {}." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "Esta versión de ViLight actualmente solo soporta enviar a 1 dirección a la vez! Lo siento!" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Esta cartera no tiene semilla" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "Esta cartera no tiene monedas disponibles para mostrar." @@ -6259,30 +6259,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "Para continuar, toque la luz de Bitbox Digital por 3 segundos." #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "Para crear una cartera expendedora, ingresar clave privada maestra (xprv/yprv/zprv)." #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "Para crear una cartera solo-para-ver, ingresar clave pública maestra (xpub/ypub/zpub)." #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "Para ayudarnos a diagnosticar y resolver el problema, puedes enviar un reporte de errores que contenga información debug:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "Para importar direcciones a una cartera expendedora necesitas usar las claves privadas." #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Para asegurar que has guardado correctamente la semilla, escríbela aquí." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "Para proceder, seleccionar una cartera para abrir." @@ -6302,9 +6302,9 @@ msgstr "Activar Visualización de CashAddr" msgid "Toggle CashShuffle" msgstr "Activar CashShuffle" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "Activar Formato" @@ -6328,7 +6328,7 @@ msgstr "Demasiados QRs detectados." msgid "Too small" msgstr "Muy pequeña" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "Herramientas" @@ -6336,25 +6336,25 @@ msgstr "Herramientas" msgid "Total size" msgstr "Tamaño total" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "Touch/Face ID desabilitados para cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "Touch/Face ID habilitados para cartera" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transacción" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "Detalles de Transacción" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "Historico de Transacciones" @@ -6363,20 +6363,20 @@ msgid "Transaction ID" msgstr "ID de Transacción" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID de Transacción:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "Entrada de Transacción {}" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "Transacción No Encontrada" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "Salida de Transacción {}" @@ -6392,7 +6392,7 @@ msgstr "Transacción no transmitida debido a salidas dust (umbral de dust es {} msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "Transacción no transmitida debido a entradas faltantes, ya gastadas o inválidas." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "Histórico de transacción puede no estar actualizado." @@ -6405,8 +6405,8 @@ msgid "Transaction saved successfully" msgstr "Transacción guardada con suceso" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transacción no relacionada a cartera" @@ -6419,9 +6419,9 @@ msgid "Transaction:" msgstr "Transacción:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transacciones" @@ -6442,11 +6442,11 @@ msgid "Tx" msgstr "Tx" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "Tipo" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "Ingresar 'eliminar' para proceder" @@ -6455,8 +6455,8 @@ msgid "Type: '{}' below to proceed" msgstr "Ingresar: '{}\" para proceder" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "UTXO" @@ -6480,7 +6480,7 @@ msgstr "No es posible crear csv" msgid "Unable to export history" msgstr "No es posible exportar histórico" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "No es posible obtener una dirección receptora desde tu cartera!" @@ -6536,8 +6536,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "Desafortunadamente, este mensaje no puede ser firmado por {}. Sólo son soportados mensajes alfanuméricos menores a 140 caracteres. Elimina cualquier caracter adicional y reintentar." #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "Descongelar" @@ -6563,16 +6563,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Desconocido" @@ -6580,7 +6580,7 @@ msgstr "Desconocido" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "Sin firmar" @@ -6588,7 +6588,7 @@ msgstr "Sin firmar" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "Códifo QR no soportado" @@ -6600,7 +6600,7 @@ msgstr "Script de salida no soportado." msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "Sin Usar" @@ -6620,7 +6620,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "Actualizando histórico de transacciones." @@ -6652,12 +6652,12 @@ msgstr "Usar SSL" msgid "Use Tor Proxy" msgstr "Usar Proxy Tor" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "Usar Touch/Face ID" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "Usar una Clave Maestra" @@ -6666,18 +6666,18 @@ msgid "Use a hardware device" msgstr "Usar dispositivo hardware" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Usar como servidor" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Usar direcciones de cambio" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Usar varias direcciones de cambio" @@ -6693,24 +6693,24 @@ msgstr "Usar claves públicas o privadas" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Usar setconfig para configurar ssl_chain y ssl-privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "Usar las sugerencias rápidas para ahorrar tiempo." #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Usar este diálogo para agregar una contraseña a la cartera." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Usar estos campos para cambiar contraseña." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "Usadas" @@ -6730,7 +6730,7 @@ msgstr "Usar direcciones de cambio hace más difícil para otras personas rastre msgid "Using this mode presents a potential security risk." msgstr "Usar este modo presenta un riesgo potencial de seguridad." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "Válida" @@ -6743,7 +6743,7 @@ msgstr "" msgid "Verify" msgstr "Verificar" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "Verificar Mensaje" @@ -6797,11 +6797,11 @@ msgstr "Ver factura" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Ver en explorador de bloques" @@ -6817,7 +6817,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "Ver la frase semilla de la cartera usada para la recuperación de cartera" @@ -6826,7 +6826,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "ATENCION" @@ -6854,22 +6854,22 @@ msgstr "Cartera" msgid "Wallet Information" msgstr "Información de Cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "Operaciones de Cartera" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "Contraseña de Cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "Semilla de Recuperación de Cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "Semilla de Cartera" @@ -6877,11 +6877,11 @@ msgstr "Semilla de Cartera" msgid "Wallet backup created" msgstr "Copia de seguridad de cartera creada" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "Cartera eliminada con suceso" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "Archivo de cartera" @@ -6897,15 +6897,15 @@ msgstr "La cartera no cuenta con un dirección a la cual barrer a" msgid "Wallet name" msgstr "Nombre de cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "Noembre de cartera vacío. Ingresar un nombre de cartera para proceder." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "Contraseña de cartera vacía. Configurar contraseña para proceder. Es posible deshabilitarla después si se prefiere." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "Las contraseñas de cartera no coinciden. Confirmar la contraseña que se desea usar ingresando la misma dos veces." @@ -6913,7 +6913,7 @@ msgstr "Las contraseñas de cartera no coinciden. Confirmar la contraseña que s msgid "Wallet removed: {}" msgstr "Cartera eliminada: {}" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "Cartera renombrada con suceso" @@ -6921,7 +6921,7 @@ msgstr "Cartera renombrada con suceso" msgid "Wallet type" msgstr "Tipo de cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "Carteras" @@ -6954,11 +6954,11 @@ msgstr "No garantizamos que las importaciones BIP39 serán siempre soportadas en msgid "We encountered an error while connecting to your device:" msgstr "Encontramos un error al intentar conectarnos a tu dispositivo:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "Marcaremos esta cartera para que solicite usar Touch/Face ID, sin embargo se encuentra actualmente deshabilitado en el dispositivo. Habilitar Touch/Face ID desde las configuraciones iOS generales para usar biometría en esta cartera." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "Bienvenido a" @@ -7007,32 +7007,32 @@ msgid "Write down the seed word shown on your {}" msgstr "Escriba la palabra de la semilla mostrada en su {}" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "Tipo de clave incorrecto" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Firma incorrecta" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "Sí" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "Parece que has ingresado mas de un ítem. Cada cartera puede tener solo una clave maestra. Para usar multiples claves maestras, crear una nueva cartera por cada clave." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "Parece que has ingresado direcciones Vitae o claves privadas no válidas." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "Estás a punto de Eliminar la cartera '{}'. A menos que tengas otras copias de esta cartera o hayas guardado su semilla, perderás fondos!\n\n" @@ -7043,7 +7043,7 @@ msgid "You are already on the latest version of ViLight." msgstr "Utilizando la última versión de ViLight." #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Estás siguiendo la rama" @@ -7060,11 +7060,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "Estás renombrando la cartera encriptada actualmente abierta '{}'." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "Estás solicitando eliminar la cartera actualmente activa. En orden de eliminar esta cartera, cambia a otra cartera y entonces selecciona esta opción nuevamente." @@ -7084,7 +7084,7 @@ msgstr "Estás usando un mensaje OP_RETURN. Esto queda permanentemente registrad msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "Podés agregar o eliminar cualquier servidor de esta lista y, opcionalmente, optar por conectarte solo a los servidores preferidos." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "También puedes crear una nueva cartera seleccionando la opción 'Agregar nueva cartera'." @@ -7092,11 +7092,11 @@ msgstr "También puedes crear una nueva cartera seleccionando la opción 'Agrega msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "¡Podés tener tantas carteras como quieras! Seleccioná una de las opciones:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "Puedes restaurar una cartera que haya sido creada por cualquier versión de ViLight." @@ -7108,11 +7108,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "No puedes acceder a tus monedas o respaldo sin la contraseña." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "No ingresaste la palabra 'eliminar' en el campo previo. Para tu propia seguridad, la cartera no fue eliminada." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "Ningún contacto. Crear nuevo contacto ahora." @@ -7139,7 +7139,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "Debes compartir esta solicitud de pago como estilo URI 'vitae:', o como una imagen de código QR." @@ -7159,7 +7159,7 @@ msgstr "Probar \"Soporte de la Cartera Hardware\" (abajo)." msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "Es necesario firmar esta transacción para que la misma obtenga un ID de transacción." @@ -7167,7 +7167,7 @@ msgstr "Es necesario firmar esta transacción para que la misma obtenga un ID de msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "Debes habilitar la protección PIN. El PIN es la única protección para tus bitcoins en caso de tu dispositivo ser perdido o robado." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "Especificaste el mismo nombre!" @@ -7189,14 +7189,14 @@ msgstr "La cartera Ledger quiere darte un código PIN de un solo uso.

Par msgid "Your accounts have been moved to" msgstr "Tus cuentas han sido movidas a" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "Clave basada en biometría de la cartera reiniciada. Esto significa que la contraseña de la cartera tiene que ser ingresada nuevamente.\n\n" "(Luego, es posible re-habilitar Touch/Face ID)" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Tus bitcoin están protegidos por contraseña. Sim embargo tu cartera no esta encriptada." @@ -7217,7 +7217,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "Tu histórico completo de transacciones será descargado nuevamente del servidor y verificado desde el blockchain." #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "Tu tasa es muy alta. El máximo es 500 sat/byte." @@ -7233,7 +7233,7 @@ msgstr "Rótulos exportados a" msgid "Your labels were imported from" msgstr "Rótulos importados desde" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "Nueva cartera importada creada con suceso. Cambiar a ella ahora?" @@ -7246,7 +7246,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "La extensión de semilla es" @@ -7255,12 +7255,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "La extensión de semilla debe ser guardada junto con la semilla." #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Tu semilla es importante!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Tu servidor está en la rama" @@ -7273,7 +7273,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "Transacción enviada al grupo de cosignatarios." #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "La semilla de generación de cartera es:" @@ -7282,12 +7282,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Histórico de cartera exportado con suceso." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Cartera no protegida." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Cartera encriptada y protegida por contraseña." @@ -7300,7 +7300,7 @@ msgid "Your {} might not have support for this functionality." msgstr "Tu {} puede no soportar esta funcionalidad." #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Ceros después del punto decimal" @@ -7361,7 +7361,7 @@ msgstr "[s] - enviar orden de pago guardada" msgid "active" msgstr "activo" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "y crea tu cartera estándar o restaura una existente con uno de los métodos siguientes" @@ -7370,8 +7370,8 @@ msgid "are frozen" msgstr "están congelados" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "bloques" @@ -7379,8 +7379,8 @@ msgstr "bloques" msgid "color" msgstr "color" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "confirmaciones" @@ -7392,7 +7392,7 @@ msgstr "consignatario" msgid "decrypting..." msgstr "desencriptando..." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "eliminar" @@ -7408,7 +7408,7 @@ msgstr "tasa" msgid "initialized" msgstr "inicializado" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "items inválidos serán descartados" @@ -7433,7 +7433,7 @@ msgid "password incorrect" msgstr "contraseña incorrecta" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "esperar..." @@ -7468,15 +7468,15 @@ msgstr "sin confirmar" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "desconocido(a)" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "desconocido (tasa baja)" @@ -7497,7 +7497,7 @@ msgid "unverified" msgstr "no verificado" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "solo-para-ver" @@ -7505,7 +7505,7 @@ msgstr "solo-para-ver" msgid "wiped" msgstr "limpio" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "sin descargar el blockchain o ejecutar un nodo pleno." @@ -7570,15 +7570,15 @@ msgstr "{} contactos exportados a '{}'" msgid "{} contacts successfully imported." msgstr "{} contactos importados." -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "{} copiado al portapapeles" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "{} días" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "{} exportado con suceso" @@ -7586,7 +7586,7 @@ msgstr "{} exportado con suceso" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "{} versión de firmware antigua. Por favor, actualizar con https://www.ledgerwallet.com" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "{} horas" @@ -7594,11 +7594,11 @@ msgstr "{} horas" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "{} temporalmente bloqueado - por favor, desconectar y reconectar" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "{} mins" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "{} nuevas transacciones recibidas: Monto total recibido en nuevas transacciones {}" @@ -7610,23 +7610,23 @@ msgstr "{} nuevas transacciones: {}" msgid "{} not in Vitae mode" msgstr "{} no está en modo Vitae" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "{} guardado con suceso" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "{} guardado en galería de fotos" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "{} segs" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "{} enviado con suceso" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "{} enviado a imprimir" diff --git a/contrib/electrum-locale/locale/es_ES/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/es_ES/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/es_ES/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/es_ES/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/es_ES/electron-cash.po b/contrib/electrum-locale/locale/es_ES/vilight.po similarity index 82% rename from contrib/electrum-locale/locale/es_ES/electron-cash.po rename to contrib/electrum-locale/locale/es_ES/vilight.po index 7849b6d3b..7c61eb4cb 100644 --- a/contrib/electrum-locale/locale/es_ES/electron-cash.po +++ b/contrib/electrum-locale/locale/es_ES/vilight.po @@ -24,7 +24,7 @@ msgstr " (Tipo de cambio no disponible)" msgid " These settings affects the fields in the Send tab" msgstr " Estos ajustes afectan a los campos de la pestaña Enviar" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " copiado al portapapeles" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d minutos" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d elemento(s) válido(s)" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "Direcciones" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "(Solo carteras determinísticas son soportadas)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "(Salida del Script)" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "+" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "..." @@ -346,7 +346,7 @@ msgstr "1 hora" msgid "1 week" msgstr "1 semana" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr ":" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Se creó una copia del archivo de tu cartera en" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "Se creará una dirección determinista utilizando la clave privada maestra proporcionada. Esta cartera será capaz de enviar y recibir Vitae libremente." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "Se creará una cartera determinista usando la clave pública maestra proporcionada. Esta cartera será watch-only o sólo de consulta de saldo." @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "A este campo se añade automáticamente una comisión sugerida. Puedes reemplazarla. La comisión sugerida aumenta según el tamaño de la transacción." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "Ya existe una cartera con ese nombre. Por favor, introduce un nombre diferente para continuar." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "Ya existe una cartera con ese nombre; por favor, inténtalo de nuevo." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "Ya existe una cartera con ese nombre. No se puede continuar." @@ -489,12 +489,12 @@ msgstr "Agrega un teclado virtual opcional al cuadro de diálogo de la contrase msgid "Add cosigner" msgstr "Agregar cosignatario" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "Añadir nueva cartera" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "Añadir a Contactos" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Comisiones adicionales" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Dirección" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "Conversor de direcciones" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "Detalles de la dirección" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "La dirección está congelada" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "La dirección no se encuentra en la cartera." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "Dirección que se quiere convertir" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Todo" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "Todas las transacciones" @@ -603,11 +603,11 @@ msgstr "Todas las transacciones" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "Todo listo." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "Ya ha caducado" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Cantidad" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Cantidad recibida:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Cantidad enviada:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Cantidad que deseas enviar" @@ -671,7 +671,7 @@ msgstr "Error al transmitir la transacción" msgid "An uninitialized Digital Bitbox is detected." msgstr "Se ha detectado un Digital Bitbox no inicializado." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "Ha ocurrido un error desconocido. No se puede proceder." @@ -683,7 +683,7 @@ msgstr "Un {} sin nombre" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "Cualquiera" @@ -691,7 +691,7 @@ msgstr "Cualquiera" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Aspecto" @@ -718,7 +718,7 @@ msgstr "¿Estás seguro de que quieres proceder?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "¿Estás seguro de que quieres desinstalar el plugin seleccionado?" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "¿Estás seguro de que quieres eliminar este contacto?" @@ -738,7 +738,7 @@ msgstr "MÓDEM de audio" msgid "Audio Modem Settings" msgstr "Opciones de módem de audio" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "Por favor, completa la autenticación" @@ -796,19 +796,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Atrás" @@ -816,9 +816,9 @@ msgstr "Atrás" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Saldo" @@ -853,7 +853,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Unidad estándar" @@ -865,7 +865,7 @@ msgstr "La unidad en la que se muestran los fondos de tu cartera." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "Antes de informar de un bug, actualiza a la versión más reciente de ViLight (última versión o git HEAD) e incluye el número de tu versión en tu informe." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "Biometría no disponible" @@ -898,12 +898,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Emitir" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Emitiendo transacción..." @@ -919,7 +919,7 @@ msgstr "El CPFP ya no es válido" msgid "CSV" msgstr "CSV" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "Calculando detalles de la Tx..." @@ -931,41 +931,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Cancelar" @@ -990,7 +990,7 @@ msgstr "" msgid "Cancelled by user" msgstr "Cancelado por el usuario" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "No se puede borrar la cartera activa" @@ -998,13 +998,13 @@ msgstr "No se puede borrar la cartera activa" msgid "Cannot add this cosigner:" msgstr "No se puede añadir este cosignatario:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "No se puede mostrar la transacción solicitada ya que no tienes abierta una cartera.\n\n" "Abre una cartera e inténtalo de nuevo." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "No se puede mostrar la transacción solicitada ya que ya tienes un cuadro de diálogo abierto.\n\n" @@ -1018,16 +1018,16 @@ msgstr "No se puede encontrar la biblioteca de python para" msgid "Cannot read file" msgstr "No se puede leer el archivo" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "No se puede enviar/recibir nuevas transacciones." #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "No es posible firmar mensajes con este tipo de dirección." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "No es posible especificar claves privadas y direcciones en la misma cartera. Las direcciones darán lugar a una cartera sólo de consulta de saldo, y las claves privadas a una cartera de gasto. Elimina los elementos incompatibles (deslizándolos hacia la izquierda)." @@ -1104,7 +1104,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "Dirección CashAddr" @@ -1112,7 +1112,7 @@ msgstr "Dirección CashAddr" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "Formato de dirección CashAddr" @@ -1196,25 +1196,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "División de la cadena detectada en el bloque %d" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "De cambio" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "Cambiar dirección" @@ -1230,8 +1230,8 @@ msgstr "Cambiar PIN" msgid "Change Password" msgstr "Cambiar contraseña" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "Cambiar o establecer contraseña" @@ -1267,7 +1267,7 @@ msgstr "Hijo Paga por el padre" msgid "Child pays for parent" msgstr "Hijo paga por el padre" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "Selecciona una dirección" @@ -1288,7 +1288,7 @@ msgstr "Selecciona un archivo de respaldo:" msgid "Choose a password to encrypt your wallet keys." msgstr "Elige una contraseña para descifrar las claves de tu cartera." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "Selecciona una dirección o introduce una clave pública" @@ -1329,8 +1329,8 @@ msgstr "Elige qué explorador de bloques utilizar para funciones que abren un na msgid "Choose..." msgstr "Elige..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Despejar todo" @@ -1381,7 +1381,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "Información de la moneda" @@ -1414,7 +1414,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "Monedas" @@ -1430,7 +1430,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "Próximamente" @@ -1446,7 +1446,7 @@ msgstr "C&onsola" msgid "Con&tacts" msgstr "Contactos" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "Confirmar eliminación" @@ -1470,7 +1470,7 @@ msgstr "Confirmar seed" msgid "Confirm Seed Extension" msgstr "Confirmar extensión de la seed" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "Confirmar envío" @@ -1482,7 +1482,7 @@ msgstr "Confirmar habilitar/deshabilitar protección de frase de seguridad" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "Confirma la contraseña de la cartera" @@ -1555,13 +1555,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "Nodo conectado" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "Conectado a %d nodos." @@ -1582,34 +1582,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "Contacto" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "Información de contacto" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "Contacto añadido" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "Contacto guardado" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Contactos" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "Controla tus propias claves privadas" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "Convierte entre los formatos de dirección Legacy y Cashaddr" @@ -1627,10 +1627,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "Copiar dirección" @@ -1655,7 +1655,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "Copiar clave pública" @@ -1663,7 +1663,7 @@ msgstr "Copiar clave pública" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "Copiar Script" @@ -1683,7 +1683,7 @@ msgstr "" msgid "Copy URI" msgstr "Copiar URL" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "Copiar UTXO" @@ -1691,7 +1691,7 @@ msgstr "Copiar UTXO" msgid "Copy and Close" msgstr "Copiar y cerrar" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "Copiar hash de la entrada" @@ -1700,8 +1700,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Copiar al portapapeles" @@ -1768,7 +1768,7 @@ msgstr "No se pudo firmar el mensaje" msgid "Could not sign message." msgstr "No se pudo firmar el mensaje." -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "Informador de errores" @@ -1776,8 +1776,8 @@ msgstr "Informador de errores" msgid "Create" msgstr "Crear" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "Crear nueva cartera estándar" @@ -1785,7 +1785,7 @@ msgstr "Crear nueva cartera estándar" msgid "Create a new seed" msgstr "Crear una nueva seed" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "Crear un cartera usando una Clave Maestra" @@ -1821,7 +1821,7 @@ msgstr "Comisión manual en Satoshis por byte" msgid "Custom rate: " msgstr "Comisión manual: " -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "No se estaba ejecutando Daemon." @@ -1843,8 +1843,8 @@ msgstr "Oscuro/Claro" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Fecha" @@ -1875,15 +1875,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Eliminar" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "Eliminar cartera" @@ -1895,12 +1895,12 @@ msgstr "¿Eliminar recibo?" msgid "Delete wallet file?" msgstr "¿Borrar el archivo de la cartera?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "Derivación" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "Derivación no válida" @@ -1908,7 +1908,7 @@ msgstr "Derivación no válida" msgid "Derivation for {} wallet" msgstr "Derivación para la cartera {}" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "Derivando direcciones..." @@ -1916,22 +1916,22 @@ msgstr "Derivando direcciones..." #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Descripción" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Descripción de la transacción (opcional)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detalles" @@ -1981,7 +1981,7 @@ msgstr "Desactivar frases de seguridad" msgid "Disabled" msgstr "Desactivado" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "Poco Espacio en Disco" @@ -1998,7 +1998,7 @@ msgid "Do not pair" msgstr "No emparejar" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "No la almacenes en forma electrónica; escríbela a mano." @@ -2030,25 +2030,25 @@ msgstr "¿Quieres enviar este informe?" msgid "Do you wish to continue?" msgstr "¿Deseas continuar?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "¿Quieres seguir la rama {}@{}?" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "¿Quieres ocultar la barra de progreso de la descarga?\n" "(Puedes volver a mostrarla en Ajustes)" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "¿Quieres usar {}:{} como el servidor blockchain?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2066,15 +2066,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "Descargando cabeceras" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "Descargando cabeceras de la blockchain..." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "Descargando cabeceras {}% ..." @@ -2090,17 +2090,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "Restablece tu cartera fácilmente con una frase seed mnemónica." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "Editar contacto" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Editar comisiones manualmente" @@ -2115,7 +2115,7 @@ msgid "ViLight cannot pair with your {}.\n\n" msgstr "ViLight no puede emparejarse con tu {}.\n\n" "Antes de que solicites que se envíe bitcoins a direcciones de esta cartera, asegúrate de que puedes emparejarla con tu dispositivo o de que tienes su seed (y frase de seguridad, si la hubiera). De lo contrario no será posible gastar los bitcoins que recibas." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "ViLight no puede continuar porque el dispositivo tiene poco espacio en disco. Liberar espacio en disco e intentar nuevamente." @@ -2124,7 +2124,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "ViLight se comunica con servidores remotos para obtener información sobre tus transacciones y direcciones. Todos los servidores cumplen el mismo cometido y sólo se diferencian en su hardware. En la mayoría de los casos te interesará que ViLight elija uno al azar; sin embargo, puedes seleccionar un servidor manualmente si lo prefieres." #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "ViLight se conecta a varios nodos con el fin de descargar las cabeceras de los bloques y ver cuál es la blockchain más larga." @@ -2132,7 +2132,7 @@ msgstr "ViLight se conecta a varios nodos con el fin de descargar las cabeceras msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "ViLight es una cartera SPV para Vitae" @@ -2156,7 +2156,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "ViLight envía las direcciones de tu cartera a un único servidor con el fin de recibir tu historial de transacciones." @@ -2197,7 +2197,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "ViLight fue incapaz de abrir tu fichero de transacciones" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "ViLight fue incapaz de analizar tu transacción" @@ -2296,12 +2296,12 @@ msgstr "Cifrar" msgid "Encrypt wallet file" msgstr "Cifrar archivo de la cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "Cifrar/descifrar mensaje" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Cifrar/descifrar mensaje" @@ -2325,7 +2325,7 @@ msgstr "{} actualmente no admite el cifrado/descifrado" msgid "Encryption and decryption are not implemented by {}" msgstr "{} no ha implementado el cifrado/descifrado" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "Disfruta de una alta seguridad" @@ -2342,10 +2342,10 @@ msgid "Enter Passphrase" msgstr "Introduce la frase de seguridad" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Introduce la contraseña" @@ -2373,7 +2373,7 @@ msgstr "Escribe una lista de direcciones de Vitae (esto creará una cartera watc msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Escribe una lista de salidas en el campo 'Pagar a'." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "Escribe una lista de las claves privadas para crear una cartera de gasto corriente. También puedes crear una cartera watch-only o de monitorización de saldo introduciendo una lista de direcciones de Vitae." @@ -2405,11 +2405,11 @@ msgstr "Introducir clave de cosignatario" msgid "Enter cosigner seed" msgstr "Introducir seed de cosignatario" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "Escribe el nuevo nombre de la cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "Escribe o selecciona una dirección" @@ -2442,7 +2442,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de msgstr "Introduce las palabras de recuperación pulsando los botones según lo que muestre el dispositivo en pantalla. También puedes usar tu teclado numérico.\n" "Pulsa la tecla RETROCESO para retroceder una palabra.\n" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "Escribe la misma contraseña de nuevo" @@ -2473,17 +2473,17 @@ msgid "Enter your password or choose another file." msgstr "Escribe tu contraseña o elige otro archivo." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Escribe tu contraseña para continuar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "Introduce tu frase seed" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "Introduce la derivación de tu cartera aquí." @@ -2502,11 +2502,11 @@ msgstr "Borrar el Digital Bitbox" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Error" @@ -2538,7 +2538,7 @@ msgstr "Error: clave pública maestra repetida" msgid "Exit ViLight" msgstr "Salir de ViLight" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "Conf. esperadas." @@ -2575,7 +2575,7 @@ msgstr "Exportar Historial" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "Exportando cartera..." @@ -2588,7 +2588,7 @@ msgid "Extend this seed with custom words" msgstr "Amplía esta seed con las palabras que quieras" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "Dirección externa" @@ -2614,7 +2614,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "No se pudo enviar la transacción a la pool cosignataria." #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "No se pudo actualizar la contraseña" @@ -2623,12 +2623,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Comisión" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "Editar comisión manualmente" @@ -2646,27 +2646,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "Añade tu dirección de email si deseas proporcionar más información, pero ten en cuenta que aparecerá en la edición de github correspondiente." #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Comisiones" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Fiat" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "Cantidad en fiat" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Moneda fiat" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Archivo" @@ -2687,11 +2687,11 @@ msgid "Fixed rate: " msgstr "Comisión fija: " #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Seguir esta rama" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2728,8 +2728,8 @@ msgid "Format: address, amount" msgstr "Formato: dirección, cantidad" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "Congelar" @@ -2771,11 +2771,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "Congeladas" @@ -2787,7 +2787,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "Autenticación 2FA habilitada. Esto no está implementado aún." -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "Con fondos" @@ -2815,24 +2815,24 @@ msgstr "Generalmente, una comisión de 1,0 sats/B es una cantidad adecuada para msgid "Generate a new random wallet" msgstr "Generar una nueva cartera aleatoria" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "Generando seed..." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "Generando tus direcciones..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "Generando tu cartera..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "Empezar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "Empezar ahora" @@ -2869,10 +2869,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Longitud" @@ -2884,11 +2884,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Aquí está tu clave pública maestra." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "Ocultar banner de descarga" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "Ocultar banner de descarga" @@ -2915,8 +2915,8 @@ msgstr "Pantalla de inicio" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Servidor" @@ -2969,7 +2969,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "Si 'Conectar solo a servidores preferidos' está habilitado, ViLight solo se conectará a servidores marcados como 'preferidos' ({})." #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "Si la autoconexión está habilitada, ViLight siempre utilizará un servidor de la blockchain más larga." @@ -2990,7 +2990,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "Si está deshabilitada, tendrás que elegir el servidor que quieras utilizar. ViLight te avisará si tu servidor va con retraso." @@ -3019,7 +3019,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "En caso de no estar seguro, la mayoría de las veces es prudente dejar esta opción deshabilitada. Sin embargo, dejarlo habilitado es más prudente (un poco desalentador para los nuevos operadores de servidores que desean poblar sus servidores)." #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "Si no estás seguro de qué es esto, no modifiques el campo." @@ -3064,12 +3064,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "Si quieres que la cartera utilice direcciones de Vitae, usa m/44'/445'/0'" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "Si quieres que la cartera utilice direcciones de Bitcoin legacy o tradicionales, usa m/44'/0'/0'" @@ -3086,12 +3086,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "Si tu cartera contiene fondos, asegúrate de que has guardado su seed." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "Imagen" @@ -3101,14 +3101,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "Importar direcciones o claves privadas" @@ -3116,7 +3116,7 @@ msgstr "Importar direcciones o claves privadas" msgid "Import Vitae Addresses" msgstr "Importar direcciones de Bitcoin" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "Importar direcciones o claves privadas de Vitae" @@ -3144,19 +3144,19 @@ msgstr "Importar claves privadas" msgid "Importing encrypted files is not supported." msgstr "No está soportada la importación de archivos cifrados." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "Importar estas direcciones las añadirá a tu cartera watch-only o de monitorización de saldo." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "Importar estas direcciones creará una cartera watch-only (sólo de monitorización de saldo)." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "Importar estas claves añadirá direcciones y claves a tu cartera de gasto." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "Importar estas claves creará una cartera de gasto completa." @@ -3210,8 +3210,8 @@ msgstr "Índice" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Información" @@ -3235,8 +3235,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Escribe la cantidad" @@ -3248,7 +3248,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Escribe la transacción" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Entradas" @@ -3271,8 +3271,8 @@ msgid "Installed &Plugins" msgstr "&Plugins instalados" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Fondos insuficientes" @@ -3284,25 +3284,25 @@ msgstr "Integración" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "No válido" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Dirección no válida" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Cantidad no válida" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "Dirección de Vitae no válida." @@ -3335,9 +3335,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "Código QR no válido" @@ -3346,7 +3346,7 @@ msgid "Invalid amount" msgstr "Cantidad no válida" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "URI de Vitae no válida:" @@ -3358,7 +3358,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "Se encontraron líneas no válidas:" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "Nombre no válido; por favor, inténtalo de nuevo." @@ -3378,7 +3378,7 @@ msgstr "Reci&bos" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "Parece que la derivación que especificaste no es válida. Por favor, inténtalo de nuevo" @@ -3491,7 +3491,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "Dirección Legacy tradicional" @@ -3531,7 +3531,7 @@ msgstr "Cargar transacción" msgid "Loading backup..." msgstr "Cargando copia de seguridad..." -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "Tiempo de bloqueo" @@ -3584,12 +3584,12 @@ msgstr "Asegúrate de que tienes la frase seed o las claves privadas antes de so msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "Comisión manual" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "Clave maestra" @@ -3605,16 +3605,16 @@ msgstr "Claves Públicas Maestras" msgid "Matrix" msgstr "Matriz" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Máximo" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Comisión máxima excedida" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "Comisión estática máxima" @@ -3651,7 +3651,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Comisión de minería" @@ -3663,7 +3663,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "Opciones de emparejamiento de móvil" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "Modificar contraseña y parámetros de cifrado" @@ -3687,15 +3687,15 @@ msgstr "Cartera multifirma" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "Mi dirección para el cambio" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "Mi dirección de recepción" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "Mi Cartera" @@ -3705,12 +3705,12 @@ msgstr "NO ES EL PIN DEL DISPOSITIVO - ver arriba" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Nombre" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "El nombre está vacío" @@ -3723,11 +3723,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Red" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "Configuración de red" @@ -3740,7 +3740,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Nunca" @@ -3750,7 +3750,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Nunca reveles tu seed." @@ -3759,7 +3759,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Nunca la escribas en una página web." @@ -3768,8 +3768,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Nuevo contacto" @@ -3777,19 +3777,19 @@ msgstr "Nuevo contacto" msgid "New Password:" msgstr "Nueva contraseña:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "Nueva cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "Se ha creado una nueva cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Nuevo contacto" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "Nueva transacción recibida: {}" @@ -3798,21 +3798,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Siguiente" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "No" @@ -3820,7 +3820,7 @@ msgstr "No" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "No hay coincidencias" @@ -3836,15 +3836,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "No hay cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "Ninguna cartera abierta" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "Ninguna dirección coincide con los criterios especificados" @@ -3852,7 +3852,7 @@ msgstr "Ninguna dirección coincide con los criterios especificados" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "No hay monedas" @@ -3881,7 +3881,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Sin mensaje o cantidad" @@ -3890,16 +3890,16 @@ msgid "No more addresses in your wallet." msgstr "No hay más direcciones en tu cartera." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "No hay salidas" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "No se encontró ninguna solicitud de pago. Crea una si lo deseas." #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "No hay dirección de recepción" @@ -3911,25 +3911,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "No hay transacciones" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "No se encontraron transacciones en la blockchain." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "No queda ningún elemento válido. No se puede proceder; vuelve atrás e inténtalo de nuevo." #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Ninguno" @@ -3937,7 +3937,7 @@ msgstr "Ninguno" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "No borrada" @@ -3959,8 +3959,8 @@ msgstr "No es un archivo de texto" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "No está conectado" @@ -4017,18 +4017,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Número de ceros mostrados tras la coma decimal. Por ejemplo, si estableces dos, \"1\" se mostrará como \"1,00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "OK" @@ -4061,11 +4061,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Sin conexión" @@ -4100,13 +4100,13 @@ msgstr "" msgid "One output per line." msgstr "Una salida por línea." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "Conectado" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Explorador de Bloques Online" @@ -4134,11 +4134,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "No borres un dispositivo a menos que hayas escrito la seed de recuperación y la(s) cartera(s) del dispositivo esté(n) vacía(s), de lo contrario los bitcoins se perderán para siempre." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "Abrir una nueva cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "Abrir cartera" @@ -4158,12 +4158,12 @@ msgstr "OpenAlias" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "Registro de OpenAlias utilizado para recibir monedas y firmar las solicitudes de pago." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "Abriendo cartera cifrada: \"{}\"" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "Abriendo {}..." @@ -4176,12 +4176,12 @@ msgid "Optional Features" msgstr "Fun&cionalidades opcionales" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Opciones" @@ -4190,8 +4190,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "Firmware {} antiguo del dispositivo llamado {}. Porfavor, descarga la versión actualizada del firmware en {}" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4206,7 +4206,7 @@ msgstr "Cantidad de salida" msgid "Output point" msgstr "Punto de salida" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Salidas" @@ -4259,21 +4259,21 @@ msgstr "Las Frases de Seguridad te permiten acceder a nuevas carteras, cada una msgid "Password" msgstr "Contraseña" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "Contraseña incorrecta" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "Contraseña requerida" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Seguridad de la Contraseña" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "La contraseña está desactivada; esta cartera no está protegida" @@ -4288,7 +4288,7 @@ msgid "Password must have less than 64 characters." msgstr "La contraseña debe tener menos de 64 caracteres." #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "La contraseña fue actualizada correctamente" @@ -4296,7 +4296,7 @@ msgstr "La contraseña fue actualizada correctamente" msgid "Password:" msgstr "Contraseña:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "Pega una dirección o escanea un código QR" @@ -4322,9 +4322,9 @@ msgid "Pay Now" msgstr "Pagar ahora" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Enviar pago" @@ -4336,21 +4336,21 @@ msgstr "Pagar a varios" msgid "Payment Request" msgstr "Solicitud de pago" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "Error en la solicitud de pago" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "La solicitud de pago ha caducado" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "Solicitud de paog guardada" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Pago enviado." @@ -4379,7 +4379,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "Por favor, describe brevemente lo que dio lugar al error (opcional):" @@ -4411,7 +4411,7 @@ msgstr "Por favor, introduzce la clave pública maestra (xpub) de tu cosignatari msgid "Please enter the master public key of cosigner #{}:" msgstr "Por favor, introduce la clave pública maestra del cosignatario #{}:" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "Por favor, escribe el nuevo nombre de esta cartera:" @@ -4446,19 +4446,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "Por favor, proporciona una clave pública o selecciona una dirección" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "Por favor, proporciona una clave pública para utilizar para el descifrado" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "Por favor, proporciona una firma y un mensaje para verificar" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "Por favor, proporcoina un cyphertext para descifrar" @@ -4479,7 +4479,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "Por favor, escribe estas %d palabras en papel (el orden es importante). " @@ -4492,7 +4492,7 @@ msgstr "Por favor, selecciona qué dispositivo {} utilizar:" msgid "Please share it with your cosigners." msgstr "Por favor, compártelo con tus cosignatarios." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "Por favor, especifica una clave maestra para continuar. Las claves válidas son cadenas largas que empiezan o bien por xpub/ypub/zpub o por xprv/yprv/zprv." @@ -4516,8 +4516,8 @@ msgstr "Por favor, actualiza a la versión v0.1.27 o superior" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Por favor, espera" @@ -4535,7 +4535,7 @@ msgstr "Por favor, espera..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "Por favor, escribe y guarda tu frase seed; es el único modo de recuperar tus fondos si olvidas tu contraseña o si roban tu dispositivo." @@ -4568,7 +4568,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Puerto" @@ -4576,7 +4576,7 @@ msgstr "Puerto" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "Publica una nota PERMANENTE en la blockchain VITAE como parte de esta transacción." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "Operación potencialmente peligrosa" @@ -4605,7 +4605,7 @@ msgstr "Pulsa \"Next\" para abrir esta cartera." msgid "Press Enter" msgstr "Pulsa Enter" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Vista previa" @@ -4613,14 +4613,14 @@ msgstr "Vista previa" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "Clave Privada" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Clave privada" @@ -4637,7 +4637,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "¿Proceder?" @@ -4682,7 +4682,7 @@ msgid "Proxy user" msgstr "Usuario del proxy" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Clave pública" @@ -4694,10 +4694,10 @@ msgstr "Claves públicas" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4706,9 +4706,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "Código QR" @@ -4736,7 +4736,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "Pregunta" @@ -4783,8 +4783,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Recibir" @@ -4797,13 +4797,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "Receptoras" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "Dirección receptora" @@ -4811,7 +4811,7 @@ msgstr "Dirección receptora" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Dirección receptora" @@ -4824,11 +4824,11 @@ msgid "Recover from a seed you have previously written down" msgstr "Recupera desde una seed que previamente hayas anotado y guardado" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Script Redeem" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "Vuelve a introducir tu frase seed" @@ -4850,10 +4850,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Eliminar" @@ -4875,20 +4875,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "Renombrar" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "Renombrar cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "Informar del contenido" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "Informe enviado" @@ -4900,17 +4900,17 @@ msgstr "Informando de bugs" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "URI de solicitud" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "La solicitud caduca en" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "Solicitar pago" @@ -4926,7 +4926,7 @@ msgstr "Solicitud enviada." msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Cantidad solicitada" @@ -4934,8 +4934,8 @@ msgstr "Cantidad solicitada" msgid "Requestor" msgstr "Solicitante" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Solicitudes" @@ -4968,8 +4968,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "Recuperar desde seed" @@ -5013,13 +5013,13 @@ msgstr "Certificado SSL utilizado para firmar solicitudes de pago." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "Satoshi Nakamoto" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Guardar" @@ -5027,8 +5027,8 @@ msgstr "Guardar" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "Guardar cartera" @@ -5044,7 +5044,7 @@ msgstr "Guardar factura como archivo" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "Guarda las etiquetas de tu cartera en un servidor remoto y las sincroniza en múltiples dispositivos en los que usas ViLight." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "Guardar/Exportar cartera" @@ -5073,7 +5073,7 @@ msgid "Scrambled words" msgstr "Palabras codificadas" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "Tipo de script" @@ -5091,11 +5091,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "Reseteo de contraseña de Secure Enclave" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "Secure Enclave no disponible" @@ -5108,8 +5108,8 @@ msgid "Security Warning" msgstr "Advertencia de seguridad" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Seed" @@ -5117,7 +5117,7 @@ msgstr "Seed" msgid "Seed Entered" msgstr "Seed introducida" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "Entrada de seed" @@ -5177,7 +5177,7 @@ msgstr "Seleccionar servidor automáticamente" msgid "Select server manually" msgstr "Seleccionar servidor manualmente" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "Selecciona cuándo debe caducar la solicitud de pago" @@ -5202,9 +5202,9 @@ msgid "Select your transaction file" msgstr "Selecciona tu archivo de transacción" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Enviar" @@ -5236,7 +5236,7 @@ msgstr "Enviar a altavoz" msgid "Send via e-mail" msgstr "Enviar por email" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "Enviando informe..." @@ -5249,7 +5249,7 @@ msgstr "Servidor" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "El servidor va con retraso" @@ -5270,7 +5270,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "El servidor va con retraso ({} bloques)" @@ -5306,46 +5306,46 @@ msgstr "Establece un PIN" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Ajustes" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "Compartir solicitud" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "Compartir como imagen QR..." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "Compartir como URI..." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "Compartir solicitud" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "Compartir/guardar QR..." -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "Compartir/Guardar..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Mostrar" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "Mostrar QR de la dirección" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "Mostrar todas las transacciones" @@ -5353,20 +5353,20 @@ msgstr "Mostrar todas las transacciones" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "Mostrar información de la moneda" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "Mostrar monedas (UTXOs)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "Mostrar contacto" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "Mostrar saldo fiat de las direcciones" @@ -5382,14 +5382,14 @@ msgstr "" msgid "Show QR Code" msgstr "Mostrar código QR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "Mostrar script QR" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Mostrar como código QR" @@ -5402,11 +5402,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Mostrar historial de precios" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "Mostrar QR de hash de entrada" @@ -5481,7 +5481,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Firmar" @@ -5489,12 +5489,12 @@ msgstr "Firmar" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "Firmar/Verificar mensaje" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Firmar/verificar Mensaje" @@ -5507,7 +5507,7 @@ msgid "Signature" msgstr "Firma" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Firma verificada" @@ -5528,17 +5528,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Firmando transacción..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "Firmar con una dirección significa firmar con la clave privada correspondiente y verificar con la clave pública correspondiente. La dirección que has introducido no tiene una clave pública única, por lo que no se pueden realizar estas operaciones." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Tamaño:" @@ -5552,12 +5552,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "Ha ocurrido algún error ejecutando ViLight." #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "¡Lo sentimos!" @@ -5566,11 +5566,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Fuente" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "Especifica una clave maestra para volver a crear la cartera determinista." @@ -5583,11 +5583,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "Gastar" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "Gastar desde" @@ -5603,20 +5603,20 @@ msgstr "" msgid "Spend from" msgstr "Gastar desde" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "Gastar de esta dirección" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "Gastar de esta UTXO" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "Gastar de esta UTXO + selección" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Sólo gastar monedas confirmadas" @@ -5640,7 +5640,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "Cartera estándar" @@ -5655,15 +5655,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Estado" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Estado:" @@ -5672,10 +5672,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "Paso {}/24. Introduce la palabra seed como se explica en tu {}:" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Completado" @@ -5703,13 +5703,13 @@ msgstr "Sweep (vaciar) claves privadas" msgid "Synchronize now?" msgstr "Sincronizar ahora?" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "Sincronizando" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Sincronizando..." @@ -5721,27 +5721,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "Cartera TREZOR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "Pulsa para añadir una descripción" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "Pulsa para añadir texto..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "Pulsa para introducir una contraseña" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "Pulsa para introducir texto..." #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "Texto copiado al portapapeles" @@ -5771,20 +5771,20 @@ msgstr "Los desarrolladores de ViLight NO auditan ni examinan ningún plugin." msgid "The PIN cannot be longer than 9 characters." msgstr "El PIN no puede tener más de 9 caracteres." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "El código QR contiene múltiples salidas. En estos momentos sólo se admite una salida.\n" "Por favor, inténtalo de nuevo." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "El código QR no parece ser una dirección de VITAE o solicitud de pago válida.\n" "Por favor, inténtalo de nuevo." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "El código QR no aprece ser una dirección de VITAE válida.\n" @@ -5806,10 +5806,10 @@ msgstr "La cantidad de la comisión puede decidirla libremente el remitente; no msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "La cantidad se mostrará en rojo si no tienes suficientes fondos en tu cartera." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "La cámara no está disponible para leer códigos QR" @@ -5861,7 +5861,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "El formato de tu cartera \"%s\" debe ser actualizado para ViLight. Este cambio no será compatible con versiones anteriores" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "El mensaje ha sido descifrado satisfactoriamente" @@ -5870,11 +5870,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "Operación indefinida; no sólo en ViLight sino en general." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "La contraseña no fue correcta para esta cartera cifrada; por favor, inténtalo de nuevo." @@ -5926,21 +5926,21 @@ msgstr "El manifiesto del plugin carece de un nombre de paquete válido." msgid "The plugin manifest lacks a valid version." msgstr "El manifiesto del plugin carece de una versión válida." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "La clave proporcionada no parece se runa clave maestra válida. Las claves válidas son cadenas largas que empiezan por xpub/ypub/zpub o por xprv/yprv/zprv. Por favor, inténtalo de nuevo." -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "La transacción solicitada ha abandonado el historial de la cartera.\n\n" -"Si el problema continúa, por favor, ponte en contacto con nosotros en electroncash.org." +"Si el problema continúa, por favor, ponte en contacto con nosotros en https://www.vitaetoken.io/." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "La seed que has introducido no parece ser una seed de cartera válida." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "La seed que has introducido no coincide con la seed generada. Vuelve a la pantalla anterior, compruébala y vuelve a intentarlo." @@ -5952,7 +5952,7 @@ msgstr "El archivo seleccionado parece ser un archivo binario." msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "La firma del mensaje proporcionado ha sido pegada en el cuadro de texto de firma." @@ -5968,7 +5968,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "La clave pública especificada no puede descifrar este texto cifrado." @@ -6044,7 +6044,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "No hay transacciones en la blockchain de esta cartera." @@ -6070,11 +6070,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Esta blockchain se utiliza para verificar las transacciones enviadas por tu servidor de transacciones." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "Este dispositivo carece del servicio de Secure Enclave, por lo que no está disponible la autenticación de cartera a través de huella dactilar/reconocimiento facial." @@ -6107,17 +6107,17 @@ msgid "This is a preferred server" msgstr "Este es un servidor preferido" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Esta es una cartera sólo de consulta de saldo" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "Esta es una cartera sólo de consulta de saldo." @@ -6126,7 +6126,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "Esta es la comisión que se pagará por esta transacción." #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Esta es la extensión de tu copia local de la blockchain." @@ -6135,12 +6135,12 @@ msgid "This may result in higher transactions fees." msgstr "Esto puede dar lugar a comisiones de transacción más elevadas." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "Esto significa que no podrás gastar Vitae con ella." #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Esta solicitud de pago será firmada." @@ -6148,14 +6148,14 @@ msgstr "Esta solicitud de pago será firmada." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "Este plugin facilita el uso de carteras multifirma." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "Esta solicitud caduca: {}" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Esta seed te permitirá recuperar tu cartera en caso de un fallo del ordenador." @@ -6171,7 +6171,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "Esta cartera de gasto no está cifrada ni protegida por contraseña. Compartirla a través de Internet podría dar lugar a que otros intercepten los datos y que pierdas los fondos.\n\n" @@ -6182,7 +6182,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "Esta herramienta ayuda a convertir de un formato de direcciones de Vitae a otro.\n" @@ -6196,7 +6196,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Esta transacción no está guardada. ¿Cerrar de todas formas?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "Esta transacción no está firmada y por tanto carece de un ID de transacción." @@ -6204,16 +6204,16 @@ msgstr "Esta transacción no está firmada y por tanto carece de un ID de transa msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "Esta versión de ViLight sólo admite envíos a una dirección cada vez. ¡Lo sentimos!" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Esta cartera no tiene seed" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "Esta cartera no tiene outputs (monedas) sin gastar que mostrar." @@ -6252,30 +6252,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "Para continuar, toca la luz de tu Digital Bitbox durante 3 segundos." #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "Por favor, introduce una clave privada maestra (xprv/yprv/zprv) para crear una cartera de gasto." #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "Por favor, escribe tu clave pública maestra (xpub/ypub/zpub) para crear una cartera sólo de consulta de saldo." #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "Para ayudarnos a diagnosticar y corregir el problema, puedes enviarnos un informe de errores que contiene información útil:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "Para importar direcciones en una cartera de gasto debes usar su clave privada." #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Por favor, escribe tu seed aquí para asegurarnos de que la has guardado correctamente." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "Por favor, selecciona una cartera que abrir para proceder." @@ -6295,9 +6295,9 @@ msgstr "Mostrar direcciones en formato CashAddr" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "Cambiar formato" @@ -6321,7 +6321,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "Herramientas" @@ -6329,25 +6329,25 @@ msgstr "Herramientas" msgid "Total size" msgstr "Tamaño total" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "Touch/Face ID desactivado para la cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "Touch/Face ID activado para la catera" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transacción" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "Detalles de la transacción" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "Historial de transacciones" @@ -6356,20 +6356,20 @@ msgid "Transaction ID" msgstr "ID de la Transacción" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID de la transacción:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "Entrada {} de transacción" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "Transacción no encontrada" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "Salida {} de transacción" @@ -6385,7 +6385,7 @@ msgstr "Transacción no transmitida debido a salidas dust (umbral de dust es {} msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "Transacción no transmitida debido a entradas faltantes, ya gastadas o inválidas." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "Puede que el historial de transacciones aún no esté actualizado." @@ -6398,8 +6398,8 @@ msgid "Transaction saved successfully" msgstr "Transacción guardada satisfactoriamente" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transacción no relacionada con tu cartera" @@ -6412,9 +6412,9 @@ msgid "Transaction:" msgstr "Transacción:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transacciones" @@ -6435,11 +6435,11 @@ msgid "Tx" msgstr "Tx" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "Tipo" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "Escribe \"eliminar\" para continuar" @@ -6448,8 +6448,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "UTXO" @@ -6473,7 +6473,7 @@ msgstr "No ha sido posible crear el csv" msgid "Unable to export history" msgstr "No ha sido posible exportar el historial" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "¡No ha sido posible obtener una dirección receptora de tu cartera!" @@ -6529,8 +6529,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "Descongelar" @@ -6556,16 +6556,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Desconocida" @@ -6573,7 +6573,7 @@ msgstr "Desconocida" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "No firmada" @@ -6581,7 +6581,7 @@ msgstr "No firmada" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "Código QR no admitido" @@ -6593,7 +6593,7 @@ msgstr "Script de salida no admitido." msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "Sin utilizar" @@ -6613,7 +6613,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "Actualizando historial de transacciones." @@ -6645,12 +6645,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Usar proxy Tor" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "Usar Touch/Face ID" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "Utilizar una clave maestra" @@ -6659,18 +6659,18 @@ msgid "Use a hardware device" msgstr "Utilizar un dispositivo hardware" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Usar como servidor" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Usar direcciones de cambio" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Usar varias direcciones de cambio" @@ -6686,24 +6686,24 @@ msgstr "Usar claves públicas o privadas" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Usa setconfig para establecer ssl_chain y ssl_privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "Usa las sugerencias rápidas para ahorrar tiempo." #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Usa este cuadro de diálogo para agregar una contraseña a tu cartera." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Utiliza esta casilla para cambiar tu contraseña." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "Utilizadas" @@ -6723,7 +6723,7 @@ msgstr "El uso de direcciones de cambio hace que sea más difícil para otras pe msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "Válida" @@ -6736,7 +6736,7 @@ msgstr "" msgid "Verify" msgstr "Verificar" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "Verificar mensaje" @@ -6790,11 +6790,11 @@ msgstr "Ver factura" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Ver en explorador de bloques" @@ -6810,7 +6810,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "Ver la frase seed de la cartera utilizada para la recuperación de la cartera" @@ -6819,7 +6819,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "ADVERTENCIA" @@ -6847,22 +6847,22 @@ msgstr "Cartera" msgid "Wallet Information" msgstr "Información de la cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "Operaciones de la Cartera" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "Contraseña de la cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "Seed de recuperación de la cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "Seed de la cartera" @@ -6870,11 +6870,11 @@ msgstr "Seed de la cartera" msgid "Wallet backup created" msgstr "Copia de seguridad de la cartera creada" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "Cartera borrada satisfactoriamente" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "Archivo de la cartera" @@ -6890,15 +6890,15 @@ msgstr "La cartera no tiene ninguna dirección a la que vaciar los fondos (sweep msgid "Wallet name" msgstr "Nombre de la catera" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "El nombre de la catera está vacío. Por favor, introduce un nombre para continuar." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "La contraseña de la cartera está vacía. Por favor, establece una contraseña para continuar. Más tarde puedes desactivar la protección por contraseña si lo deseas." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "Las contraseñas no coinciden. Por favor, confirma la contraseña que quieres establecer para tu cartera introduciendo la misma contraseña dos veces." @@ -6906,7 +6906,7 @@ msgstr "Las contraseñas no coinciden. Por favor, confirma la contraseña que qu msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "Nombre de la cartera cambiado con éxito" @@ -6914,7 +6914,7 @@ msgstr "Nombre de la cartera cambiado con éxito" msgid "Wallet type" msgstr "Tipo de cartera" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "Carteras" @@ -6947,11 +6947,11 @@ msgstr "No garantizamos las importaciones BIP39 vayan a estar admitidas siempre msgid "We encountered an error while connecting to your device:" msgstr "Encontramos un error al conectarnos con tu dispositivo:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "Marcaremos que esta cartera solicita usar Touch/Face ID, sin embargo está deshabilitado en el dispositivo. Por favor, habilita Touch/Face ID en los Ajustes Generales de iOS para usar la biometría con esta cartera." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "Bienvenido a" @@ -7000,32 +7000,32 @@ msgid "Write down the seed word shown on your {}" msgstr "Escribe la palabra seed que se muestra en tu {}" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "Tipo de clave incorrecto" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Firma incorrecta" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "Sí" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "Parece que has introducido más de un elemento. Una cartera sólo puede tener una única clave maestra; para utilizar múltiples claves maestras, crea una nueva cartera para cada clave." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "Parece que no has introducido direcciones o claves privadas de Vitae válidas." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "Estás a punto de eliminar la cartera \"{}\". ¡Podrías perder fondos salvo que tengas otras copias de esta cartera o que hayas escrito su seed!\n\n" @@ -7036,7 +7036,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Estás siguiendo la rama" @@ -7053,11 +7053,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "Estás cambiando el nombre de la cartera cifrada \"{}\", actualmente abierta." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "Estás solicitando la eliminación de la cartera actualmente activa. Por favor, cambia a otra cartera y vuelve a seleccionar esta opción para borrar esta cartera." @@ -7077,7 +7077,7 @@ msgstr "Estás usando un mensaje OP_RETURN. Este se escribe de forma permanente msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "Puedes agregar o eliminar cualquier servidor de esta lista y, opcionalmente, optar por conectarte solo a los servidores preferidos." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "También puedes crear una nueva cartera seleccionando la opción \"Añadir nueva cartera\"." @@ -7085,11 +7085,11 @@ msgstr "También puedes crear una nueva cartera seleccionando la opción \"Añad msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "¡Puedes tener todas las carteras que quieras! Elige una de las siguientes opciones:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "Puedes restablecer una cartera que haya sido creada por cualquier versión de ViLight." @@ -7101,11 +7101,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "No puedes acceder a tus monedas o a una copia de seguridad sin la contraseña." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "No introdujiste el texto \"eliminar\" en el diálogo anterior. Por tu seguridad, el archivo de la cartera no fue borrado." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "Todavía no tienes ningún contacto. ¡Crea uno nuevo!" @@ -7132,7 +7132,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "Puedes compartir esta solicitud de pago como una URI estilo \"vitae:\" o como imagen de código QR." @@ -7152,7 +7152,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "Tienes que firmar esta transacción para que ésta obtenga una ID de transacción." @@ -7160,7 +7160,7 @@ msgstr "Tienes que firmar esta transacción para que ésta obtenga una ID de tra msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "Deberías habilitar la protección por PIN. Tu PIN es la única protección que tendrán tus bitcoins en caso de robo o pérdida del dispositivo." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "¡Especificaste el mismo nombre!" @@ -7182,14 +7182,14 @@ msgstr "Tu Ledger Wallet quiere decirte un PIN de un sólo uso.

Para mayo msgid "Your accounts have been moved to" msgstr "Tus cuentas han sido movidas a" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "Tu clave biométrica de esta cartera ha sido reseteada. Tienes que volver a introducir tu contraseña de esta cartera.\n\n" "(Después puedes optar por volver a habilitar Touch/Face ID como antes)." #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Tus bitcoins están protegidos por contraseña. Sin embargo, el archivo de tu cartera no está cifrado." @@ -7210,7 +7210,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "Tu comisión es demasiado alta. Máximo 500 sat/byte." @@ -7226,7 +7226,7 @@ msgstr "Tus etiquetas fueron exportadas a" msgid "Your labels were imported from" msgstr "Tus etiquetas fueron importadas de" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "Tu nueva cartera importada ha sido creada satisfactoriamente. ¿Te gustaría cambiar a ella ahora?" @@ -7239,7 +7239,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "La extensión de su seed es" @@ -7248,12 +7248,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "La extensión de tu seed debe guardarse junto con tu seed." #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "¡Tu seed es importante!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Tu servidor está en la rama" @@ -7266,7 +7266,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "Tu transacción fue enviada a la pool cosignataria." #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Tu seed de generación de cartera es:" @@ -7275,12 +7275,12 @@ msgid "Your wallet history has been successfully exported." msgstr "El historial de tu cartera ha sido exportado con éxito." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Tu cartera no está protegida." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Tu cartera está cifrada y protegida por contraseña." @@ -7293,7 +7293,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Ceros después de la coma decimal" @@ -7354,7 +7354,7 @@ msgstr "[s] - enviar orden de pago guardada" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "y crea tu cartera estándar o recupera una existente mediante cualquiera de los siguientes métodos" @@ -7363,8 +7363,8 @@ msgid "are frozen" msgstr "están congeladas" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "bloques" @@ -7372,8 +7372,8 @@ msgstr "bloques" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "confirmaciones" @@ -7385,7 +7385,7 @@ msgstr "cosignatario" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "eliminar" @@ -7401,7 +7401,7 @@ msgstr "" msgid "initialized" msgstr "inicializado" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "se descartarán los elementos no válidos" @@ -7426,7 +7426,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "por favor, espera..." @@ -7461,15 +7461,15 @@ msgstr "sin confirmar" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "desconocido/a" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "desconocido (comisión baja)" @@ -7490,7 +7490,7 @@ msgid "unverified" msgstr "no verificado" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "sólo consulta" @@ -7498,7 +7498,7 @@ msgstr "sólo consulta" msgid "wiped" msgstr "limpio" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "sin descargar la blockchain ni ejecutar un nodo completo." @@ -7563,15 +7563,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "{} copiado al portapapeles" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "{} días" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "{} exportado con éxito" @@ -7579,7 +7579,7 @@ msgstr "{} exportado con éxito" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "{} horas" @@ -7587,11 +7587,11 @@ msgstr "{} horas" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "{} mins" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "{} transacciones nuevas recibidas; la cantidad total recibida en las transacciones es {}" @@ -7603,23 +7603,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "{} guardado con éxito" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "{} guardada en la biblioteca de fotos" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "{} segs" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "{} enviado con éxito" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "{} enviado a la impresora" diff --git a/contrib/electrum-locale/locale/es_MX/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/es_MX/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/es_MX/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/es_MX/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/es_MX/electron-cash.po b/contrib/electrum-locale/locale/es_MX/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/es_MX/electron-cash.po rename to contrib/electrum-locale/locale/es_MX/vilight.po index af5ea7da7..2ead3b1c7 100644 --- a/contrib/electrum-locale/locale/es_MX/electron-cash.po +++ b/contrib/electrum-locale/locale/es_MX/vilight.po @@ -24,7 +24,7 @@ msgstr " (Tipo de cambio no disponible)" msgid " These settings affects the fields in the Send tab" msgstr " Estos ajustes afectan a los campos de la pestaña Enviar" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " copiado al portapapeles" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d minutos" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d elemento(s) válido(s)" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Direcciones" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 hora" msgid "1 week" msgstr "1 semana" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "" @@ -815,9 +815,9 @@ msgstr "" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "" @@ -864,7 +864,7 @@ msgstr "" msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "" @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "" msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "" #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "" msgid "Encrypt wallet file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "" @@ -3766,19 +3766,19 @@ msgstr "" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3809,7 +3809,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3926,7 +3926,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "" @@ -4285,7 +4285,7 @@ msgstr "" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "" @@ -4325,21 +4325,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "" @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4523,7 +4523,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4564,7 +4564,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4601,14 +4601,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "" @@ -4682,10 +4682,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4913,7 +4913,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "" @@ -4921,8 +4921,8 @@ msgstr "" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "" @@ -5014,8 +5014,8 @@ msgstr "" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5104,7 +5104,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "" msgid "Select server manually" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "" @@ -5476,12 +5476,12 @@ msgstr "" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "" @@ -5690,13 +5690,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "" @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "" msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6129,14 +6129,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "" @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6552,7 +6552,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6702,7 +6702,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "" @@ -6826,22 +6826,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6924,11 +6924,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6977,32 +6977,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7012,7 +7012,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7029,11 +7029,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7053,7 +7053,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7061,11 +7061,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7077,11 +7077,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7108,7 +7108,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7128,7 +7128,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7136,7 +7136,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7157,13 +7157,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7184,7 +7184,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7200,7 +7200,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7213,7 +7213,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7222,12 +7222,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7240,7 +7240,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7249,12 +7249,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7267,7 +7267,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7328,7 +7328,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7337,8 +7337,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7346,8 +7346,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7359,7 +7359,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7375,7 +7375,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7400,7 +7400,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "" @@ -7435,15 +7435,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7464,7 +7464,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "" @@ -7472,7 +7472,7 @@ msgstr "" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7537,15 +7537,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7553,7 +7553,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7561,11 +7561,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7577,23 +7577,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/fa_IR/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/fa_IR/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/fa_IR/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/fa_IR/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/fa_IR/electron-cash.po b/contrib/electrum-locale/locale/fa_IR/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/fa_IR/electron-cash.po rename to contrib/electrum-locale/locale/fa_IR/vilight.po index df5f87bcc..e5e4cdf28 100644 --- a/contrib/electrum-locale/locale/fa_IR/electron-cash.po +++ b/contrib/electrum-locale/locale/fa_IR/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d دقیقه" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "آدرس ها" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "۱ ساعت" msgid "1 week" msgstr "1 هفته" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "یک کپی از فایل کیف پول شما ذخیره شد در" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "همه" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "تمام تراکنش ها" @@ -603,11 +603,11 @@ msgstr "تمام تراکنش ها" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "همه چیز آماده است." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "در حال حاضر منقضی شده" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "مقدار" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "میزان دریافت:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "مقدار ارسال:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "مقدار ارسال شده" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "Bitbox دیجیتال uninitialized شناسایی شده است." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "یک خطای ناشناخته رخ داده است. نمی تواند ادامه دهید." @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "" @@ -717,7 +717,7 @@ msgstr "آیا مطمئن هستید که می‌خواهید ادامه دهی msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "مودم صوتی" msgid "Audio Modem Settings" msgstr "تنظیمات مودم صوتی" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "" @@ -815,9 +815,9 @@ msgstr "" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "واحد پایه" @@ -864,7 +864,7 @@ msgstr "کیف پول اصلی شما." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "قبل از گزارش اشکال ارتقا به جدیدترین نسخه الکترون نقدی (آخرین نسخه یا دستگاه گوارش سر) و شامل شماره نسخه در گزارش خود را." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "بیومتریک غیر قابل دسترسی" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "انتشار" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "انتشار تراکنش..." @@ -918,7 +918,7 @@ msgstr "CPFP دیگر" msgid "CSV" msgstr "CSV" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "محاسبه جزئیات Tx..." @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "لغو" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "توسط کاربر لغو شد" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "کیف پول فعال حذف نشد" @@ -997,13 +997,13 @@ msgstr "کیف پول فعال حذف نشد" msgid "Cannot add this cosigner:" msgstr "این اقدام را نمی توان اضافه کرد:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "که شما کیف پول باز معامله درخواست شده را نمایش داد.\n\n" "باز کردن کیف پول و دوباره امتحان کنید." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "از آنجا که شما در حال حاضر یک محاوره کمکی باز معامله درخواست شده را نمایش داد.\n\n" @@ -1017,16 +1017,16 @@ msgstr "پایتون را پیدا کند برای کتابخانه" msgid "Cannot read file" msgstr "فایل قابل خواندن نیست" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "ارسال/معاملات جدید دریافت کند." #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "پیام ها با این نوع آدرس را نمی توان ثبت کرد." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "کلید های خصوصی و آدرس در همان کیف پول مشخص نمی باشد. آدرس در تماشای فقط کیف پول و کلید های خصوصی را در کیف پول هزینه منجر می شود. حذف موارد ناسازگار (توسط آنها را ترک کنید)." @@ -1103,7 +1103,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "آدرس نقدی" @@ -1111,7 +1111,7 @@ msgstr "آدرس نقدی" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "شکلبندی نشانی CashAddr" @@ -1195,25 +1195,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "زنجیره ای شناسایی شده در بلوک %d تقسیم" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "تغییر" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "تغییر آدرس" @@ -1229,8 +1229,8 @@ msgstr "تغییر PIN" msgid "Change Password" msgstr "تغییر رمز" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "تغییر یا تنظیم رمز" @@ -1266,7 +1266,7 @@ msgstr "فرزند را برای پدر و مادر می پردازد" msgid "Child pays for parent" msgstr "فرزند را برای پدر و مادر می پردازد" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "تغییر آدرس" @@ -1287,7 +1287,7 @@ msgstr "پرونده پشتیبان را انتخاب کنید:" msgid "Choose a password to encrypt your wallet keys." msgstr "کلمه عبور براى رمزگذاری کلید های کیف پول خود را انتخاب کنید." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "آدرس انتخاب کنید و یا کلید عمومی را وارد کنید" @@ -1326,8 +1326,8 @@ msgstr "" msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "" @@ -1378,7 +1378,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1411,7 +1411,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1427,7 +1427,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1443,7 +1443,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1467,7 +1467,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1479,7 +1479,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1552,13 +1552,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1579,34 +1579,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "مخاطب افزوده شد" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "مخاطب ذخیره شد" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "مخاطبین" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "بین میراث و Cashaddr تبدیل فرمت" @@ -1624,10 +1624,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "رونوشت نشانی" @@ -1652,7 +1652,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1660,7 +1660,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "اسکریپت کپی" @@ -1680,7 +1680,7 @@ msgstr "" msgid "Copy URI" msgstr "کپی آدرس اینترنتی" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "کپی UTXO" @@ -1688,7 +1688,7 @@ msgstr "کپی UTXO" msgid "Copy and Close" msgstr "ذخیره و بستن" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "رونوشت هش ورودی" @@ -1697,8 +1697,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "\"کپی به کلیپ بورد\"" @@ -1765,7 +1765,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1773,8 +1773,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1782,7 +1782,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1818,7 +1818,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1840,8 +1840,8 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "" @@ -1872,15 +1872,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1892,12 +1892,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1905,7 +1905,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1913,22 +1913,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "" #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "" @@ -1978,7 +1978,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1995,7 +1995,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2027,24 +2027,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2062,15 +2062,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2086,17 +2086,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2110,7 +2110,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2119,7 +2119,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2127,7 +2127,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2151,7 +2151,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2192,7 +2192,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2291,12 +2291,12 @@ msgstr "" msgid "Encrypt wallet file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "" @@ -2320,7 +2320,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2337,10 +2337,10 @@ msgid "Enter Passphrase" msgstr "" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "" @@ -2368,7 +2368,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2400,11 +2400,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2436,7 +2436,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2467,17 +2467,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2496,11 +2496,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "" @@ -2532,7 +2532,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2569,7 +2569,7 @@ msgstr "" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2582,7 +2582,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2608,7 +2608,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "" @@ -2617,12 +2617,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2640,27 +2640,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "" @@ -2681,11 +2681,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2720,8 +2720,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2763,11 +2763,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2779,7 +2779,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2807,24 +2807,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2861,10 +2861,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2876,11 +2876,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2907,8 +2907,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2961,7 +2961,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2982,7 +2982,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3011,7 +3011,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3056,12 +3056,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3078,12 +3078,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3093,14 +3093,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3108,7 +3108,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3136,19 +3136,19 @@ msgstr "" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3202,8 +3202,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3227,8 +3227,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3240,7 +3240,7 @@ msgstr "" msgid "Input raw transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "" @@ -3262,8 +3262,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3275,25 +3275,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3326,9 +3326,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3337,7 +3337,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3349,7 +3349,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3369,7 +3369,7 @@ msgstr "" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3482,7 +3482,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3522,7 +3522,7 @@ msgstr "" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3575,12 +3575,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3596,16 +3596,16 @@ msgstr "" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3642,7 +3642,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3678,15 +3678,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3696,12 +3696,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3714,11 +3714,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3731,7 +3731,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "" @@ -3741,7 +3741,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3750,7 +3750,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3759,8 +3759,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "" @@ -3768,19 +3768,19 @@ msgstr "" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3789,21 +3789,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3811,7 +3811,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3827,15 +3827,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3843,7 +3843,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3872,7 +3872,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "" @@ -3881,16 +3881,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3902,25 +3902,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3928,7 +3928,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3950,8 +3950,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "" @@ -4008,18 +4008,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4052,11 +4052,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4091,13 +4091,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4125,11 +4125,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4149,12 +4149,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4167,12 +4167,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4181,8 +4181,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4197,7 +4197,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "" @@ -4250,21 +4250,21 @@ msgstr "" msgid "Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4279,7 +4279,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "" @@ -4287,7 +4287,7 @@ msgstr "" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4313,9 +4313,9 @@ msgid "Pay Now" msgstr "" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "" @@ -4327,21 +4327,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "" @@ -4370,7 +4370,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4402,7 +4402,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4436,19 +4436,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4469,7 +4469,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4482,7 +4482,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4506,8 +4506,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4525,7 +4525,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4558,7 +4558,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4566,7 +4566,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4595,7 +4595,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4603,14 +4603,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "" @@ -4627,7 +4627,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4672,7 +4672,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "" @@ -4684,10 +4684,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4696,9 +4696,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "" @@ -4726,7 +4726,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4772,8 +4772,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "" @@ -4786,13 +4786,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4800,7 +4800,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "" @@ -4813,11 +4813,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4839,10 +4839,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "" @@ -4864,20 +4864,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4889,17 +4889,17 @@ msgstr "" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4915,7 +4915,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "" @@ -4923,8 +4923,8 @@ msgstr "" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4957,8 +4957,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5002,13 +5002,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "" @@ -5016,8 +5016,8 @@ msgstr "" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5033,7 +5033,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5062,7 +5062,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5080,11 +5080,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5097,8 +5097,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5106,7 +5106,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5166,7 +5166,7 @@ msgstr "" msgid "Select server manually" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5191,9 +5191,9 @@ msgid "Select your transaction file" msgstr "" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "" @@ -5225,7 +5225,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5238,7 +5238,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5259,7 +5259,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5295,46 +5295,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5342,20 +5342,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5371,14 +5371,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5391,11 +5391,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5470,7 +5470,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "" @@ -5478,12 +5478,12 @@ msgstr "" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5496,7 +5496,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5517,17 +5517,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5541,12 +5541,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5555,11 +5555,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5572,11 +5572,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5592,20 +5592,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5629,7 +5629,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5644,15 +5644,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5661,10 +5661,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "" @@ -5692,13 +5692,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "" @@ -5710,27 +5710,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5760,18 +5760,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5792,10 +5792,10 @@ msgstr "" msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5846,7 +5846,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5855,11 +5855,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5911,20 +5911,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5936,7 +5936,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5952,7 +5952,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6027,7 +6027,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6053,11 +6053,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6090,17 +6090,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6109,7 +6109,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6118,12 +6118,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6131,14 +6131,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "" @@ -6154,7 +6154,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6164,7 +6164,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6177,7 +6177,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6185,16 +6185,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6233,30 +6233,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6276,9 +6276,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6302,7 +6302,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6310,25 +6310,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6337,20 +6337,20 @@ msgid "Transaction ID" msgstr "" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6366,7 +6366,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6379,8 +6379,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6393,9 +6393,9 @@ msgid "Transaction:" msgstr "" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "" @@ -6416,11 +6416,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6429,8 +6429,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6454,7 +6454,7 @@ msgstr "" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6510,8 +6510,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6537,16 +6537,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6554,7 +6554,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6562,7 +6562,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6574,7 +6574,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6594,7 +6594,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6626,12 +6626,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6640,18 +6640,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6667,24 +6667,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6704,7 +6704,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6717,7 +6717,7 @@ msgstr "" msgid "Verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6771,11 +6771,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6791,7 +6791,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6800,7 +6800,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "" @@ -6828,22 +6828,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6851,11 +6851,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6871,15 +6871,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6887,7 +6887,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6895,7 +6895,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6926,11 +6926,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6979,32 +6979,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7014,7 +7014,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7031,11 +7031,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7055,7 +7055,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7063,11 +7063,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7079,11 +7079,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7110,7 +7110,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7130,7 +7130,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7138,7 +7138,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7159,13 +7159,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7186,7 +7186,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7202,7 +7202,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7215,7 +7215,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7224,12 +7224,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7242,7 +7242,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7251,12 +7251,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7269,7 +7269,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7330,7 +7330,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7339,8 +7339,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7348,8 +7348,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7361,7 +7361,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7377,7 +7377,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7402,7 +7402,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "" @@ -7437,15 +7437,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7466,7 +7466,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "" @@ -7474,7 +7474,7 @@ msgstr "" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7539,15 +7539,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7555,7 +7555,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7563,11 +7563,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7579,23 +7579,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/fr_FR/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/fr_FR/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/fr_FR/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/fr_FR/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/fr_FR/electron-cash.po b/contrib/electrum-locale/locale/fr_FR/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/fr_FR/electron-cash.po rename to contrib/electrum-locale/locale/fr_FR/vilight.po index 0b8502198..eeec87934 100644 --- a/contrib/electrum-locale/locale/fr_FR/electron-cash.po +++ b/contrib/electrum-locale/locale/fr_FR/vilight.po @@ -24,7 +24,7 @@ msgstr " (Aucun taux FX disponible)" msgid " These settings affects the fields in the Send tab" msgstr " Ces paramètres modifient les champs de l'onglet Envoyer" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " copié dans le presse-papier" @@ -37,7 +37,7 @@ msgstr " {} trouvé" msgid "%2d minutes" msgstr "%2d minutes" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d élément(s) valide" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "&Address to convert" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Adresses" @@ -293,7 +293,7 @@ msgstr "(Les anciennes versions d'ViLight précédant la version 3.3.6 ont produ msgid "(Only deterministic wallets are supported)" msgstr "(Seuls les portefeuilles déterministes sont supportés)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "+" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "..." @@ -346,7 +346,7 @@ msgstr "1 heure" msgid "1 week" msgstr "1 semaine" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr ":" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Une copie de votre portefeuille a été créée dans" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Les frais suggérés sont automatiquement ajoutés à ce champ. Vous pouvez l'annuler. Les frais suggérés augmentent avec la taille de la transaction." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "Un portefeuille de ce nom existe déjà. Veuillez entrer un nom de portefeuille différent pour continuer." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "Un portefeuille de ce nom existe déjà, veuillez réessayer." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "Un portefeuille de ce nom existe déjà. Impossible de continuer." @@ -489,12 +489,12 @@ msgstr "Ajouter un clavier virtuel à la fenêtre de mot de passe (optionnel)." msgid "Add cosigner" msgstr "Ajouter un cosignataire" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "Ajouter un nouveau portefeuille" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "Ajouter aux contacts" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Frais supplémentaires" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adresse" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "L'adresse n'est pas dans le portefeuille." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Tous" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Montant" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Montant reçu :" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Montant envoyé :" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Montant à envoyer" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "Sans nom {}" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Apparence" @@ -718,7 +718,7 @@ msgstr "Êtes-vous sûr de vouloir continuer ?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -738,7 +738,7 @@ msgstr "MODEM audio" msgid "Audio Modem Settings" msgstr "Paramètres du modem audio" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -796,19 +796,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Retour" @@ -816,9 +816,9 @@ msgstr "Retour" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Solde" @@ -853,7 +853,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Unité de base" @@ -865,7 +865,7 @@ msgstr "Unité de base de votre portefeuille." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -898,12 +898,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Diffuser" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Diffusion de la transaction en cours..." @@ -919,7 +919,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -931,41 +931,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Annuler" @@ -990,7 +990,7 @@ msgstr "" msgid "Cancelled by user" msgstr "Annulé par l'utilisateur" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -998,12 +998,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "Impossible d'ajouter ce co-signataire:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1016,16 +1016,16 @@ msgstr "Impossible de trouver la librairie python pour" msgid "Cannot read file" msgstr "Impossible de lire le fichier" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1102,7 +1102,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1194,25 +1194,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1228,8 +1228,8 @@ msgstr "Modifier le PIN" msgid "Change Password" msgstr "Modifier le mot de passe" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1265,7 +1265,7 @@ msgstr "L'enfant paie pour le parent" msgid "Child pays for parent" msgstr "L'enfant paie pour le parent" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1286,7 +1286,7 @@ msgstr "Sélectionner un fichier de sauvegarde :" msgid "Choose a password to encrypt your wallet keys." msgstr "Veuillez choisir un mot de passe pour encrypter les clés de votre portefeuille." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1327,8 +1327,8 @@ msgstr "Choisir l'explorateur de bloc en ligne à utiliser pour les fonctions, c msgid "Choose..." msgstr "Choisir..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Effacer" @@ -1379,7 +1379,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1412,7 +1412,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1428,7 +1428,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1444,7 +1444,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1468,7 +1468,7 @@ msgstr "Confirmer la graine" msgid "Confirm Seed Extension" msgstr "Veuillez confirmer l'extension de la graine" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1480,7 +1480,7 @@ msgstr "Confirmation d'activation/désactivation de la protection par phrase sec msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1553,13 +1553,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "Nœud connecté" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1580,34 +1580,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1625,10 +1625,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1653,7 +1653,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1661,7 +1661,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1681,7 +1681,7 @@ msgstr "" msgid "Copy URI" msgstr "Copier l'URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1689,7 +1689,7 @@ msgstr "" msgid "Copy and Close" msgstr "Copier et fermer" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1698,8 +1698,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Copier dans le presse-papier" @@ -1766,7 +1766,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1774,8 +1774,8 @@ msgstr "" msgid "Create" msgstr "Créer" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1783,7 +1783,7 @@ msgstr "" msgid "Create a new seed" msgstr "Créer une nouvelle graine" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1841,8 +1841,8 @@ msgstr "Sombre / clair" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "" @@ -1873,15 +1873,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Effacer" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1893,12 +1893,12 @@ msgstr "Supprimer la facture ?" msgid "Delete wallet file?" msgstr "Supprimer le fichier portefeuille?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1906,7 +1906,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1914,22 +1914,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Description de la transaction (facultatif)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Détails" @@ -1979,7 +1979,7 @@ msgstr "Désactiver les phrases secrètes" msgid "Disabled" msgstr "Désactiver" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1996,7 +1996,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Ne la stockez pas électroniquement." @@ -2028,24 +2028,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Souhaitez-vous continuer ?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2063,15 +2063,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2087,17 +2087,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Éditer les frais manuellement" @@ -2111,7 +2111,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2120,7 +2120,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2128,7 +2128,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2152,7 +2152,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2193,7 +2193,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2292,12 +2292,12 @@ msgstr "Chiffrer" msgid "Encrypt wallet file" msgstr "Crypter le portefeuille" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Chiffrer / déchiffrer un message" @@ -2321,7 +2321,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2338,10 +2338,10 @@ msgid "Enter Passphrase" msgstr "Saisir la phrase secrète" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Saisir le mot de passe" @@ -2369,7 +2369,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Mettre une liste de \"outputs\" dans le champ \"payer à\"." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2401,11 +2401,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "Saisir la graine du cosignataire" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2437,7 +2437,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2468,17 +2468,17 @@ msgid "Enter your password or choose another file." msgstr "Entrez votre mot de passe ou choisissez un autre fichier." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Pour continuer, veuillez saisir votre nouveau mot de passe" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2497,11 +2497,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Erreur" @@ -2533,7 +2533,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2570,7 +2570,7 @@ msgstr "Exporter l'historique" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2583,7 +2583,7 @@ msgid "Extend this seed with custom words" msgstr "Rallonge ce \"seed\" avec des mots personnalisés" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2609,7 +2609,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Le mot de passe n'a pas pu être mis à jour" @@ -2618,12 +2618,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Frais" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2641,27 +2641,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Frais" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Fiduciaire" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Monnaie étatique" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Fichier" @@ -2682,11 +2682,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Suivre cette branche" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2721,8 +2721,8 @@ msgid "Format: address, amount" msgstr "Format : adresse, montant" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "Bloquer" @@ -2764,11 +2764,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2808,24 +2808,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2862,10 +2862,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Hauteur" @@ -2877,11 +2877,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Voici votre clé publique maître." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2908,8 +2908,8 @@ msgstr "Écran d'accueil" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2962,7 +2962,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2983,7 +2983,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3012,7 +3012,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3057,12 +3057,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3079,12 +3079,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3094,14 +3094,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importer" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3109,7 +3109,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "Importer les adresses Bitcoin" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3137,19 +3137,19 @@ msgstr "Importer les clés privées" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3203,8 +3203,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3228,8 +3228,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Saisir un montant" @@ -3241,7 +3241,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Saisir une transaction brute" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Entrées" @@ -3263,8 +3263,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Fonds insuffisants" @@ -3276,25 +3276,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Addresse invalide" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Montant invalide" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3327,9 +3327,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3338,7 +3338,7 @@ msgid "Invalid amount" msgstr "Montant non valide" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3350,7 +3350,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3370,7 +3370,7 @@ msgstr "Factures" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3483,7 +3483,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3523,7 +3523,7 @@ msgstr "Charger une transaction" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3576,12 +3576,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3597,16 +3597,16 @@ msgstr "Clés publiques maîtresses" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Frais maximums dépassés" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3643,7 +3643,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Frais de minage" @@ -3655,7 +3655,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3679,15 +3679,15 @@ msgstr "Portefeuille multi-signature" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3697,12 +3697,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Nom" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3715,11 +3715,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Réseau" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3732,7 +3732,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Jamais" @@ -3742,7 +3742,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Ne divulguez jamais votre graine." @@ -3751,7 +3751,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Ne la tapez jamais sur un site web." @@ -3760,8 +3760,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Nouveau Contact" @@ -3769,19 +3769,19 @@ msgstr "Nouveau Contact" msgid "New Password:" msgstr "Nouveau mot de passe :" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Nouveau contact" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3790,21 +3790,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Suivant" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "Non" @@ -3812,7 +3812,7 @@ msgstr "Non" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3828,15 +3828,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Aucun portefeuille" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3844,7 +3844,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3873,7 +3873,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Aucun message ou montant" @@ -3882,16 +3882,16 @@ msgid "No more addresses in your wallet." msgstr "Plus aucune adresse dans votre portefeuille." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Aucune sortie" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3903,25 +3903,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Aucun" @@ -3929,7 +3929,7 @@ msgstr "Aucun" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3951,8 +3951,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Non connecté" @@ -4009,18 +4009,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Nombre de zéro affichés après la virgule décimale. Par exemple, si c'est réglé sur 2,\"1\". s'affichera comme \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4053,11 +4053,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Hors-ligne" @@ -4092,13 +4092,13 @@ msgstr "" msgid "One output per line." msgstr "Une adresse par ligne." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Explorateur de blocs en ligne" @@ -4126,11 +4126,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "Ne réinitialisez un appareil que si vous avez noté la graine (seed) de récupération ou que les portefeuilles contenus dans l'appareil sont vides. Dans le cas contraire, les bitcoins seront à jamais perdus." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4150,12 +4150,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "OpenAlias record, utilisé pour recevoir des pièces de monnaie et signer les ordres de paiement." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4168,12 +4168,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4182,8 +4182,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4198,7 +4198,7 @@ msgstr "Saisir un montant" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Sorties" @@ -4251,21 +4251,21 @@ msgstr "Les phrases secrètes vous permettent d'accéder à de nouveaux portefeu msgid "Password" msgstr "Mot de passe" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Robustesse du mot de passe" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Le mot de passe est désactivé, ce portefeuille n'est pas protégé" @@ -4280,7 +4280,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Le mot de passe a été actualisé avec succès" @@ -4288,7 +4288,7 @@ msgstr "Le mot de passe a été actualisé avec succès" msgid "Password:" msgstr "Mot de passe :" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4314,9 +4314,9 @@ msgid "Pay Now" msgstr "Payer maintenant" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Payer à" @@ -4328,21 +4328,21 @@ msgstr "Payer pour plusieurs" msgid "Payment Request" msgstr "Demande de paiement" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "La demande de paiement a expirée" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Paiement envoyé." @@ -4371,7 +4371,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4403,7 +4403,7 @@ msgstr "Veuillez enter la clé publique maîtresse (xpub) de votre cosignataire. msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4437,19 +4437,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4470,7 +4470,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4483,7 +4483,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Veuillez le partager avec vos cosignataires." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4507,8 +4507,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Veuillez patienter" @@ -4526,7 +4526,7 @@ msgstr "Veuillez patienter..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4559,7 +4559,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4567,7 +4567,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4596,7 +4596,7 @@ msgstr "Cliquer sur suivant pour ouvrir ce portefeuille." msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Aperçu" @@ -4604,14 +4604,14 @@ msgstr "Aperçu" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Clé privée" @@ -4628,7 +4628,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Procéder ?" @@ -4673,7 +4673,7 @@ msgid "Proxy user" msgstr "Utiliser un Proxy Utilisateur" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Clé publique" @@ -4685,10 +4685,10 @@ msgstr "Clé publique" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4697,9 +4697,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "Code QR" @@ -4727,7 +4727,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4773,8 +4773,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Recevoir" @@ -4787,13 +4787,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4801,7 +4801,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Adresse de reception" @@ -4814,11 +4814,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4840,10 +4840,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Supprimer" @@ -4865,20 +4865,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4890,17 +4890,17 @@ msgstr "Rapports d'erreurs" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Expiration de la demande" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "Demander un paiement" @@ -4916,7 +4916,7 @@ msgstr "Demande envoyée." msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Somme demandée" @@ -4924,8 +4924,8 @@ msgstr "Somme demandée" msgid "Requestor" msgstr "Demandeur" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Requêtes" @@ -4958,8 +4958,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5003,13 +5003,13 @@ msgstr "Certificat SSL utilisé pour la signature des demandes de paiement." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Enregistrer" @@ -5017,8 +5017,8 @@ msgstr "Enregistrer" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5034,7 +5034,7 @@ msgstr "Enregistrer la facture" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5063,7 +5063,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5081,11 +5081,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5098,8 +5098,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Graine" @@ -5107,7 +5107,7 @@ msgstr "Graine" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5167,7 +5167,7 @@ msgstr "Sélectionner un serveur automatiquement" msgid "Select server manually" msgstr "Sélectionner un serveur manuellement" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5192,9 +5192,9 @@ msgid "Select your transaction file" msgstr "Sélectionner votre fichier de transaction" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Envoyer" @@ -5226,7 +5226,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5239,7 +5239,7 @@ msgstr "Serveur" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5260,7 +5260,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5296,46 +5296,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Paramètres" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Afficher" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5343,20 +5343,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "Afficher le solde Monnaie-fiat pour les adresses" @@ -5372,14 +5372,14 @@ msgstr "" msgid "Show QR Code" msgstr "Montrer le Code QR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Afficher comme code QR" @@ -5392,11 +5392,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Afficher l'historique des taux" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5471,7 +5471,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Signer" @@ -5479,12 +5479,12 @@ msgstr "Signer" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Signer / vérifier un message" @@ -5497,7 +5497,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Signature vérifiée" @@ -5518,17 +5518,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "En train de signer la transaction..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Taille:" @@ -5542,12 +5542,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5556,11 +5556,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5573,11 +5573,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5593,20 +5593,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Dépense seulement la monnaie confirmé" @@ -5630,7 +5630,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5645,15 +5645,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Statut" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Statut:" @@ -5662,10 +5662,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Succès" @@ -5693,13 +5693,13 @@ msgstr "Balayer les clés privées" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Synchronisation..." @@ -5711,27 +5711,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5761,18 +5761,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5793,10 +5793,10 @@ msgstr "Le montant des frais peut être librement fixé par l'émetteur. Cependa msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Le montant sera affiché en rouge si vous n'avez pas assez de fonds dans votre portefeuille." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5847,7 +5847,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5856,11 +5856,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5912,20 +5912,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5937,7 +5937,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5953,7 +5953,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6028,7 +6028,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6054,11 +6054,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Cette chaîne de blocs est utilisée pour vérifier les transactions envoyées par votre serveur de transactions." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6091,17 +6091,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Ceci est un portefeuille spectateur." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6110,7 +6110,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Ceci est la taille de la copie locale pour la chaîne de blocs." @@ -6119,12 +6119,12 @@ msgid "This may result in higher transactions fees." msgstr "Cela peut entraîner des frais de transaction plus élevés." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Cette demande de paiement sera signée." @@ -6132,14 +6132,14 @@ msgstr "Cette demande de paiement sera signée." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Cette graine vous permettra de restaurer votre portefeuille en cas d'une défaillance de votre ordinateur." @@ -6155,7 +6155,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6165,7 +6165,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6178,7 +6178,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Cette transaction n'est pas enregistrée. Fermer quand même ?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6186,16 +6186,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Ce portefeuille n'a pas de graine" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6234,30 +6234,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Pour s'assurer que vous avez bien sauvegardé votre graine, merci de la réécrire ici." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6277,9 +6277,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6303,7 +6303,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6311,25 +6311,25 @@ msgstr "" msgid "Total size" msgstr "Taille totale" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6338,20 +6338,20 @@ msgid "Transaction ID" msgstr "ID de la transaction" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID de la transaction :" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6367,7 +6367,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6380,8 +6380,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transaction sans rapport avec votre portefeuille" @@ -6394,9 +6394,9 @@ msgid "Transaction:" msgstr "Transaction" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "" @@ -6417,11 +6417,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6430,8 +6430,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6455,7 +6455,7 @@ msgstr "Impossible de créer le CSV" msgid "Unable to export history" msgstr "Incapable d'exporter l'historique" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6511,8 +6511,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "Débloquer" @@ -6538,16 +6538,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Inconnu" @@ -6555,7 +6555,7 @@ msgstr "Inconnu" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6563,7 +6563,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6575,7 +6575,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6595,7 +6595,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6627,12 +6627,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Utiliser le Proxy Tor" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6641,18 +6641,18 @@ msgid "Use a hardware device" msgstr "Utiliser un périphérique matériel" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Utilise comme server" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Utiliser les adresses de monnaie" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6668,24 +6668,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Utilisez setconfig pour définir ssl_chain et ssl_privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Utilisez cette boîte de dialogue pour ajouter un mot de passe à votre portefeuille." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Utilisez cette boîte de dialogue pour modifier votre mot de passe." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6705,7 +6705,7 @@ msgstr "Utiliser les adresses de monnaie rendent le suivi de vos transactions pa msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6718,7 +6718,7 @@ msgstr "" msgid "Verify" msgstr "Vérifier" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6772,11 +6772,11 @@ msgstr "Afficher la facture" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Afficher sur l'explorateur de blocs" @@ -6792,7 +6792,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6801,7 +6801,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "ATTENTION" @@ -6829,22 +6829,22 @@ msgstr "Portefeuille" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6852,11 +6852,11 @@ msgstr "" msgid "Wallet backup created" msgstr "La sauvegarde du portefeuille a été créée" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6872,15 +6872,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6888,7 +6888,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6896,7 +6896,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6929,11 +6929,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6982,32 +6982,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Mauvaise signature" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "Oui" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7017,7 +7017,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Vous suivez la branche suivante" @@ -7034,11 +7034,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7058,7 +7058,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7066,11 +7066,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7082,11 +7082,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7113,7 +7113,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7133,7 +7133,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7141,7 +7141,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "Vous devriez activer la protection par code PIN. Utiliser un code PIN est la seule manière de protéger vos bitcoins si votre appareil est perdu ou volé." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7162,13 +7162,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "Votre compte a été déplacé vers" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Vos bitcoins son protéger par un mot de passe, seulement votre portefeuille n'est pas encrypté." @@ -7189,7 +7189,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7205,7 +7205,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7218,7 +7218,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "Votre extension de graine est" @@ -7227,12 +7227,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Votre graine est importante !" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7245,7 +7245,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "La graine de génération de votre portefeuille est :" @@ -7254,12 +7254,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Votre historique de portefeuille a bien été exporté." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Votre portefeuille n'est pas protéger." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Votre portefeuille est protégé par mot de passe et chiffré." @@ -7272,7 +7272,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Zéro après la virgule" @@ -7333,7 +7333,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7342,8 +7342,8 @@ msgid "are frozen" msgstr "sont gelées" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "blocs" @@ -7351,8 +7351,8 @@ msgstr "blocs" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7364,7 +7364,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7380,7 +7380,7 @@ msgstr "" msgid "initialized" msgstr "initialisé" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7405,7 +7405,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "veuillez patienter..." @@ -7440,15 +7440,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "inconnu" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7469,7 +7469,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "spectateur" @@ -7477,7 +7477,7 @@ msgstr "spectateur" msgid "wiped" msgstr "effacé(s)" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7542,15 +7542,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7558,7 +7558,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7566,11 +7566,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7582,23 +7582,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/hu_HU/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/hu_HU/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/hu_HU/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/hu_HU/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/hu_HU/electron-cash.po b/contrib/electrum-locale/locale/hu_HU/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/hu_HU/electron-cash.po rename to contrib/electrum-locale/locale/hu_HU/vilight.po index 218bda5ef..4df4b8b37 100644 --- a/contrib/electrum-locale/locale/hu_HU/electron-cash.po +++ b/contrib/electrum-locale/locale/hu_HU/vilight.po @@ -24,7 +24,7 @@ msgstr " (ismeretlen árfolyam)" msgid " These settings affects the fields in the Send tab" msgstr " Ezek a beállítások hatással vannak a Küldés tab mezőire" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " vágólapra másolva" @@ -37,7 +37,7 @@ msgstr " {} találat" msgid "%2d minutes" msgstr "%2d perc" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d érvényes elem(ek)" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "&Cím kovertálás" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "Címek" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 óra" msgid "1 week" msgstr "1 hét" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "A tárcafájlod másolata létrejött itt" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Az ajánlott tranzakciós díj automatikusan hozzáadódik ehhez a mezőhöz. Felülírhatod. A javasolt tranzakciós díj a tranzakció összegével arányosan növekszik." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "Opcionális virtuális billentyűzet hozzáadása a jelszó párbeszéda msgid "Add cosigner" msgstr "Társ-aláíró hozzáadása" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "Új tárca hozzáadása" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "További költségek" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Cím" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "A cím nincs bent a mobiltárcában." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Összes" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Összeg" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Beérkezett összeg:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Küldött összeg:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Küldendő összeg" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "Egy meg nem nevezett {}" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Megjelenés" @@ -718,7 +718,7 @@ msgstr "Biztosan folytatod?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -738,7 +738,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "Hang beállítása" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -796,19 +796,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Vissza" @@ -816,9 +816,9 @@ msgstr "Vissza" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Egyenleg" @@ -853,7 +853,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Egység" @@ -865,7 +865,7 @@ msgstr "A pénztárca alapértelmezett egysége." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -898,12 +898,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Szétküldés" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Tranzakció kiküldése folyamatban..." @@ -919,7 +919,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -931,41 +931,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Mégse" @@ -990,7 +990,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -998,12 +998,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "Nem adható hozzá ez a megbízó:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1016,16 +1016,16 @@ msgstr "Python könyvtár nem található" msgid "Cannot read file" msgstr "A fájl nem olvasható" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1102,7 +1102,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1194,25 +1194,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Váltó" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1228,8 +1228,8 @@ msgstr "" msgid "Change Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1265,7 +1265,7 @@ msgstr "A gyermek fizet a szülőknek" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1286,7 +1286,7 @@ msgstr "Válasszon biztonsági másolatot:" msgid "Choose a password to encrypt your wallet keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1327,8 +1327,8 @@ msgstr "Válassza ki azt az online blokk-felfedezőt, amelyet használni szeretn msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Törlés" @@ -1379,7 +1379,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1412,7 +1412,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1428,7 +1428,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1444,7 +1444,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1468,7 +1468,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1480,7 +1480,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1553,13 +1553,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "Csatlakoztatott csomópont" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1580,34 +1580,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Partnerek" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1625,10 +1625,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1653,7 +1653,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1661,7 +1661,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1681,7 +1681,7 @@ msgstr "" msgid "Copy URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1689,7 +1689,7 @@ msgstr "" msgid "Copy and Close" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1698,8 +1698,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Másolás vágólapra" @@ -1766,7 +1766,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1774,8 +1774,8 @@ msgstr "" msgid "Create" msgstr "Létrehozás" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1783,7 +1783,7 @@ msgstr "" msgid "Create a new seed" msgstr "Új seed létrehozása" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1841,8 +1841,8 @@ msgstr "Sötét/Világos" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Dátum" @@ -1873,15 +1873,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Törlés" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1893,12 +1893,12 @@ msgstr "Számla törlése?" msgid "Delete wallet file?" msgstr "Törli a mobiltárca fájlt?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1906,7 +1906,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1914,22 +1914,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Megjegyzés" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Megjegyzés a tranzakcióhoz (opcionális)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Részletek" @@ -1979,7 +1979,7 @@ msgstr "" msgid "Disabled" msgstr "Kikapcsolt" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1996,7 +1996,7 @@ msgid "Do not pair" msgstr "Ne párosítson" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Ne tárolja elektronikusan." @@ -2028,24 +2028,24 @@ msgstr "El akarod küldeni ezt a jelentést?" msgid "Do you wish to continue?" msgstr "Folytatni szeretné?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2063,15 +2063,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2087,17 +2087,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Manuális költség beállítások" @@ -2111,7 +2111,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2120,7 +2120,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2128,7 +2128,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2152,7 +2152,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2193,7 +2193,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2292,12 +2292,12 @@ msgstr "Titkosítás" msgid "Encrypt wallet file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Az üzenet titkosítása/visszafejtése" @@ -2321,7 +2321,7 @@ msgstr "A titkosítás és a visszafejtés jelenleg nem támogatott {}" msgid "Encryption and decryption are not implemented by {}" msgstr "A titkosítást és a visszafejtést nem a {}" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2338,10 +2338,10 @@ msgid "Enter Passphrase" msgstr "" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Jelszó megadása" @@ -2369,7 +2369,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Adja meg a kimenetek listáját a \"Fizetés\" mezőbe." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2401,11 +2401,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2437,7 +2437,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2468,17 +2468,17 @@ msgid "Enter your password or choose another file." msgstr "Adja meg jelszavát vagy válasszon másik fájlt." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Adja meg a jelszavát a folytatáshoz" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2497,11 +2497,11 @@ msgstr "Törölje a Digital Bitbox-ot" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Hiba" @@ -2533,7 +2533,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2570,7 +2570,7 @@ msgstr "Előzmények exportálása" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2583,7 +2583,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2609,7 +2609,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Jelszó frissítése sikertelen" @@ -2618,12 +2618,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Tranzakciós díj" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2641,27 +2641,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Díjak" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Fiat pénznem" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Fájl" @@ -2682,11 +2682,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2721,8 +2721,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "Fagyaszt" @@ -2764,11 +2764,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2780,7 +2780,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2808,24 +2808,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2862,10 +2862,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Magasság" @@ -2877,11 +2877,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2908,8 +2908,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2962,7 +2962,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2983,7 +2983,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3012,7 +3012,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3057,12 +3057,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3079,12 +3079,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3094,14 +3094,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importálás" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3109,7 +3109,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3137,19 +3137,19 @@ msgstr "Privát kulcsok importálása" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3203,8 +3203,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Információ" @@ -3228,8 +3228,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Bemeneti összeg" @@ -3241,7 +3241,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Nyers tranzakció bevitel" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Bevitelek" @@ -3263,8 +3263,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Nincs elegendő fedezet" @@ -3276,25 +3276,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Érvénytelen cím" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Érvénytelen összeg" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3327,9 +3327,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3338,7 +3338,7 @@ msgid "Invalid amount" msgstr "Hibás összeg" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3350,7 +3350,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3370,7 +3370,7 @@ msgstr "Számlák" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3483,7 +3483,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3523,7 +3523,7 @@ msgstr "Tranzakció betöltése" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3576,12 +3576,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3597,16 +3597,16 @@ msgstr "" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Max költség meghaladva" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3643,7 +3643,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Bányász tranzakciós díj" @@ -3655,7 +3655,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3679,15 +3679,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3697,12 +3697,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Név" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3715,11 +3715,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Hálózat" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3732,7 +3732,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Soha" @@ -3742,7 +3742,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3751,7 +3751,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3760,8 +3760,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Új partner" @@ -3769,19 +3769,19 @@ msgstr "Új partner" msgid "New Password:" msgstr "Új jelszó:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Új névjegy" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3790,21 +3790,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Következő" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "Nem" @@ -3812,7 +3812,7 @@ msgstr "Nem" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3828,15 +3828,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3844,7 +3844,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3873,7 +3873,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "" @@ -3882,16 +3882,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3903,25 +3903,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3929,7 +3929,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3951,8 +3951,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Nincs kapcsolat" @@ -4009,18 +4009,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "A tizedesjegy után megjelenő nullák száma. Ha a beállított érték 2, az \"1.\" így fog megjelenni: \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4053,11 +4053,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4092,13 +4092,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4126,11 +4126,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4150,12 +4150,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4168,12 +4168,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Opciók" @@ -4182,8 +4182,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4198,7 +4198,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Kimenetek" @@ -4251,21 +4251,21 @@ msgstr "" msgid "Password" msgstr "Jelszó" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4280,7 +4280,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "" @@ -4288,7 +4288,7 @@ msgstr "" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4314,9 +4314,9 @@ msgid "Pay Now" msgstr "Fizetés Most" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Pénzküldés ide" @@ -4328,21 +4328,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Fizetés elküldve" @@ -4371,7 +4371,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4403,7 +4403,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4437,19 +4437,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4470,7 +4470,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4483,7 +4483,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4507,8 +4507,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Kérjük várjon" @@ -4526,7 +4526,7 @@ msgstr "Kérjük várjon..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4559,7 +4559,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4567,7 +4567,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4596,7 +4596,7 @@ msgstr "" msgid "Press Enter" msgstr "Nyomjon Enter-t" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Előnézet" @@ -4604,14 +4604,14 @@ msgstr "Előnézet" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "Privát kulcs" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Privát kulcs" @@ -4628,7 +4628,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Tovább?" @@ -4673,7 +4673,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "" @@ -4685,10 +4685,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4697,9 +4697,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR kód" @@ -4727,7 +4727,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4773,8 +4773,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Fogadás" @@ -4787,13 +4787,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "Beérkező" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4801,7 +4801,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Beérkező cím" @@ -4814,11 +4814,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4840,10 +4840,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Törlés" @@ -4865,20 +4865,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4890,17 +4890,17 @@ msgstr "Hibák jelentése" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Kérés lejár" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "Fizetés kérése" @@ -4916,7 +4916,7 @@ msgstr "Kérés elküldve." msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "" @@ -4924,8 +4924,8 @@ msgstr "" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4958,8 +4958,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5003,13 +5003,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Mentés" @@ -5017,8 +5017,8 @@ msgstr "Mentés" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5034,7 +5034,7 @@ msgstr "Számla mentése fájlként" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5063,7 +5063,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5081,11 +5081,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5098,8 +5098,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Emlékeztető" @@ -5107,7 +5107,7 @@ msgstr "Emlékeztető" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5167,7 +5167,7 @@ msgstr "" msgid "Select server manually" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5192,9 +5192,9 @@ msgid "Select your transaction file" msgstr "Válassz egy tranzakciós fájlt" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Küldés" @@ -5226,7 +5226,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5239,7 +5239,7 @@ msgstr "Szerver" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5260,7 +5260,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5296,46 +5296,46 @@ msgstr "PIN beállítása" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Beállítások" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Mutat" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5343,20 +5343,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5372,14 +5372,14 @@ msgstr "" msgid "Show QR Code" msgstr "QR kód megjelenítése" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "QR kód megjelenítése" @@ -5392,11 +5392,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5471,7 +5471,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Aláírás" @@ -5479,12 +5479,12 @@ msgstr "Aláírás" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5497,7 +5497,7 @@ msgid "Signature" msgstr "Aláírás" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5518,17 +5518,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Méret:" @@ -5542,12 +5542,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "Sajnáljuk!" @@ -5556,11 +5556,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5573,11 +5573,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5593,20 +5593,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5630,7 +5630,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5645,15 +5645,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5662,10 +5662,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Sikeres" @@ -5693,13 +5693,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Szinkronizáció..." @@ -5711,27 +5711,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "Szöveg vágólapra másolva" @@ -5761,18 +5761,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5793,10 +5793,10 @@ msgstr "A tranzakciós díj összege a küldő által választható. Minél alac msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5847,7 +5847,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5856,11 +5856,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5912,20 +5912,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5937,7 +5937,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5953,7 +5953,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6028,7 +6028,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6054,11 +6054,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6091,17 +6091,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6110,7 +6110,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6119,12 +6119,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6132,14 +6132,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Az elmékeztető lehetővé teszi, hogy adatvesztés esetén is visszaállíthatsd a tárcádat." @@ -6155,7 +6155,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6165,7 +6165,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6178,7 +6178,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6186,16 +6186,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6234,30 +6234,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6277,9 +6277,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6303,7 +6303,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6311,25 +6311,25 @@ msgstr "" msgid "Total size" msgstr "Teljes méret" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Tranzakció" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6338,20 +6338,20 @@ msgid "Transaction ID" msgstr "Tranzakció azonosító" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "Tranzakció ID:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6367,7 +6367,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6380,8 +6380,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6394,9 +6394,9 @@ msgid "Transaction:" msgstr "Tranzakció:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Tranzakciók" @@ -6417,11 +6417,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6430,8 +6430,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6455,7 +6455,7 @@ msgstr "Nem lehet csv-t létrehozni" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6511,8 +6511,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "Kiolvasztás" @@ -6538,16 +6538,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6555,7 +6555,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6563,7 +6563,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6575,7 +6575,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6595,7 +6595,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6627,12 +6627,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Tor proxy használata" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6641,18 +6641,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Használd szerverként" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Cserecímek használata" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6668,24 +6668,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "Használt" @@ -6705,7 +6705,7 @@ msgstr "Cserecímek használatával nehezebben követhetik le a tranzakcióidat msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6718,7 +6718,7 @@ msgstr "" msgid "Verify" msgstr "Megerősítés" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6772,11 +6772,11 @@ msgstr "Számla megtekintése" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6792,7 +6792,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6801,7 +6801,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "FIGYELEM" @@ -6829,22 +6829,22 @@ msgstr "Pénztárca" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6852,11 +6852,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6872,15 +6872,15 @@ msgstr "" msgid "Wallet name" msgstr "Tárca neve" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6888,7 +6888,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6896,7 +6896,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "Tárcák" @@ -6927,11 +6927,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6980,32 +6980,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7015,7 +7015,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7032,11 +7032,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7056,7 +7056,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7064,11 +7064,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7080,11 +7080,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7111,7 +7111,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7131,7 +7131,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7139,7 +7139,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7160,13 +7160,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7187,7 +7187,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7203,7 +7203,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7216,7 +7216,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7225,12 +7225,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7243,7 +7243,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7252,12 +7252,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7270,7 +7270,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7331,7 +7331,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7340,8 +7340,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7349,8 +7349,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7362,7 +7362,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7378,7 +7378,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7403,7 +7403,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "" @@ -7438,15 +7438,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "ismeretlen" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7467,7 +7467,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "" @@ -7475,7 +7475,7 @@ msgstr "" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7540,15 +7540,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7556,7 +7556,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7564,11 +7564,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7580,23 +7580,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/hy_AM/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/hy_AM/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/hy_AM/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/hy_AM/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/hy_AM/electron-cash.po b/contrib/electrum-locale/locale/hy_AM/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/hy_AM/electron-cash.po rename to contrib/electrum-locale/locale/hy_AM/vilight.po index 67625f67d..f33de7aab 100644 --- a/contrib/electrum-locale/locale/hy_AM/electron-cash.po +++ b/contrib/electrum-locale/locale/hy_AM/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "Հասցեներ" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 ժամ" msgid "1 week" msgstr "1 շաբաթ" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Ձեր դրամապանակի ֆայլի պատճենը ստեղծվել է" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Առաջարկվող վճարների չափը ավտոմատ ավելացվում է այս դաշտում։ Դուք կարող եք նրան վերանշանակել։ Նա մեծանում է գործարքի հետ միասին։" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Լրացուցիչ վճարներ" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Հասցե" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Գումարի չափը" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Ստացած գումարները․" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Օգտագործած գումարը․" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Վճարման գումարի չափը" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Հիմնական" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Հետ" @@ -815,9 +815,9 @@ msgstr "Հետ" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Հաշվեկշիռ" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Արժույթ" @@ -864,7 +864,7 @@ msgstr "Ձեր դրամապանակի արժույթը։" msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Հեռարձակում" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Գործարքի Լրատու..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Մերժում" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "Չի կարող կարդալ ֆայլը" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "Փոխել Գաղտնաբառը" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "Հետնորդը Վճարում է Ծնողի համար" msgid "Child pays for parent" msgstr "Հետնորդը վճարում է Ծնողի համար" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "Ընտրել գաղտնաբառ ձեր դրամապանակի բանալիները ծածկագրելու համար։" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Ընտրեք ինչպիսի առցանց միավոր է օգտագոր msgid "Choose..." msgstr "Ընտրել..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Հասկանալի է" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "Հաստատել Սերմերը" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Հետադարձ կապ" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Պատճեն URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "Պատճենել և փակել" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Պատճենել հիշողության մեջ" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "Մութ/Բաց" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Ամսաթիվ" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Ջնջել" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "Հեռացնե՞լ ապրանքագիրը" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Նկարագրություն" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "" #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Մանրամասներ" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Ծածկագրել" msgid "Encrypt wallet file" msgstr "Ծածկագրել դրամապանակի ֆայլը" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Ծածկագրել/վերծանել հաղորդագրությունը" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Մուտքագրեք Գաղտնաբառ" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Մուտքագրեք Գաղտնաբառ" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Սխալ" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Արտահանման Պատմություն" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Չհաջողվեց թարմացնել գաղտնաբառը" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Վճար" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Վճարներ" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Ֆիատ" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Ֆիատ գումար" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Ֆայլ" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "Ձևաչափ․ հասցե, քանակ" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Բարձրություն" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Ներմուծել" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Անձնական բանալիների ներմուծում " msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Տեղեկատվություն" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Մուտքագրումներ" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "Հաշիվ-ֆակտուրաներ" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Անուն" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Ցանց" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Երբեք" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Նոր Կոնտակտ" @@ -3766,19 +3766,19 @@ msgstr "Նոր Կոնտակտ" msgid "New Password:" msgstr "Նոր գաղտնաբառ․" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Նոր կոնտակտ" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Հաջորդը" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3809,7 +3809,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Ոչ նոր Դրամապանակ" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Ոչ մեկ" @@ -3926,7 +3926,7 @@ msgstr "Ոչ մեկ" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "Լավ" @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Անցանց" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Օպցիաներ" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Արդյունքներ" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "Գաղտնաբառ" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "" @@ -4285,7 +4285,7 @@ msgstr "" msgid "Password:" msgstr "Գաղտնաբառ․" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "Վճարել հիմա" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Վճարել" @@ -4325,21 +4325,21 @@ msgstr "&Վճարել շատ" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "" @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Խնդրում ենք սպասել" @@ -4523,7 +4523,7 @@ msgstr "Խնդրում ենք սպասել..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4564,7 +4564,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Նախադիտում" @@ -4601,14 +4601,14 @@ msgstr "Նախադիտում" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Մասնավոր բանալի" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "Պրոքսի օգտատեր" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Բաց բանալի" @@ -4682,10 +4682,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR Կոդ" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Ջնջել" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4913,7 +4913,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "" @@ -4921,8 +4921,8 @@ msgstr "" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Պահպանել" @@ -5014,8 +5014,8 @@ msgstr "Պահպանել" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Սերմեր" @@ -5104,7 +5104,7 @@ msgstr "Սերմեր" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "" msgid "Select server manually" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Ուղարկել" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "Սերվեր" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Կարգավորումներ" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Ցույց տալ" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Նշան" @@ -5476,12 +5476,12 @@ msgstr "Նշան" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Չափ․" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Աղբյուր" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Կարգավիճակ" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Կարգավիճակ․" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Հաջողություն" @@ -5690,13 +5690,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "" @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "" msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6129,14 +6129,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "" @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "Ընդհանուր չափը" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Գործարք" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "Փոխանցման ID" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "Փոխանցման ID․" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Գործարքներ" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Անհայտ" @@ -6552,7 +6552,7 @@ msgstr "Անհայտ" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Օգտագործել Tor Պրոքսի" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6702,7 +6702,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "Ստուգել" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "ԶԳՈՒՇԱՑՈՒՄ" @@ -6826,22 +6826,22 @@ msgstr "Դրամապանակ" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6924,11 +6924,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6977,32 +6977,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7012,7 +7012,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7029,11 +7029,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7053,7 +7053,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7061,11 +7061,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7077,11 +7077,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7108,7 +7108,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7128,7 +7128,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7136,7 +7136,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7157,13 +7157,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7184,7 +7184,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7200,7 +7200,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7213,7 +7213,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7222,12 +7222,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7240,7 +7240,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7249,12 +7249,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7267,7 +7267,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7328,7 +7328,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7337,8 +7337,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7346,8 +7346,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7359,7 +7359,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7375,7 +7375,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7400,7 +7400,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "խնդրում ենք սպասել..." @@ -7435,15 +7435,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "անհայտ" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7464,7 +7464,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "միայն դիտել" @@ -7472,7 +7472,7 @@ msgstr "միայն դիտել" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7537,15 +7537,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7553,7 +7553,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7561,11 +7561,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7577,23 +7577,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/id_ID/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/id_ID/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/id_ID/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/id_ID/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/id_ID/electron-cash.po b/contrib/electrum-locale/locale/id_ID/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/id_ID/electron-cash.po rename to contrib/electrum-locale/locale/id_ID/vilight.po index 1584f3d2c..c34396e72 100644 --- a/contrib/electrum-locale/locale/id_ID/electron-cash.po +++ b/contrib/electrum-locale/locale/id_ID/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Alamat" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 jam" msgid "1 week" msgstr "1 minggu" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Salinan dompet Anda dibuat di" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Biaya yang disarankan akan ditambahkan secara otomatis ke kolom ini. Anda boleh menggantinya. Biaya yang disarankan akan meningkat seiring dengan ukuran data transaksi." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Biaya tambahan" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Alamat" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Jumlah" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Jumlah yang diterima:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Jumlah yang dikirim:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Jumlah yang akan dikirimkan" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Tampilan" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Kembali" @@ -815,9 +815,9 @@ msgstr "Kembali" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Saldo" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Satuan dasar" @@ -864,7 +864,7 @@ msgstr "Satuan dasar dompet Anda." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Kirim" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Menyiarkan transaksi..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Batal" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "Tidak bisa membaca berkas" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "Ubah sandi" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "Anak membayar untuk orang tua" msgid "Child pays for parent" msgstr "Anak membayar untuk orang tua" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "Silahkan buat sebuah kata sandi untuk mengenkripsi kunci dompet Anda." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Pilih penjelajah blok online mana yang akan digunakan saat membuka peram msgid "Choose..." msgstr "Pilih..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Hapus" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "Kon&sol" msgid "Con&tacts" msgstr "Kon&tak" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "Konfirmasi Benih" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Kontak" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Salin URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "Salin dan Tutup" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Salin ke clipboard" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "Tampilan Malam / Terang" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Tanggal" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Hapus" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "Menghapus tagihan?" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Keterangan" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Keterangan transaksi (opsional)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detail" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Jangan menyimpan secara elektronik." @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Apakah anda ingin melanjutkan?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Ubah upah secara manual" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Enkripsi" msgid "Encrypt wallet file" msgstr "Mengenkripsi data dompet anda" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "&Enkripsi/dekripsi Pesan" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Masukkan kata sandi" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Masukan kata sandi" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Masukkan daftar pengiriman ke dalam 'Bayar ke' pada kolom." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "Masukkan password anda atau pilih file yang lain." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Masukkan password anda untuk di proses" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Kesalahan" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Ekspor Riwayat" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "Memperpanjang seed ini dengan kata-kata yang dikustomisasi" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Gagal memperbaharui kata kunci" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Biaya transaksi" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Biaya" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Uang yang disahkan oleh sebuah negara sebagai alat pembayaran" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Nilai tukar mata uang" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Berkas" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Ikuti cabang ini" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "Format: alamat, jumlah" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Tinggi" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Ini adalah kunci publik master Anda." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Impor" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Impor kunci privat" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Informasi" @@ -3224,8 +3224,8 @@ msgid_plural "Inputs ({num_inputs})" msgstr[0] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Masukkan jumlah" @@ -3237,7 +3237,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Masukan transaksi mentah" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Masukan" @@ -3259,8 +3259,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Dana tidak mencukupi" @@ -3272,25 +3272,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Alamat Salah" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Jumlah Salah" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3323,9 +3323,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3334,7 +3334,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3346,7 +3346,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3366,7 +3366,7 @@ msgstr "Tagihan-Tagihan" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3479,7 +3479,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3519,7 +3519,7 @@ msgstr "Muat transaksi" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3572,12 +3572,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3593,16 +3593,16 @@ msgstr "Kunci-kunci publik utama" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Maksimal" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Diatas biaya maksimum" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3639,7 +3639,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Bebas menambang koin" @@ -3651,7 +3651,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3675,15 +3675,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3693,12 +3693,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Nama" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3711,11 +3711,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Jaringan" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3728,7 +3728,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Jangan pernah" @@ -3738,7 +3738,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Jangan pernah membuka kunci benih." @@ -3747,7 +3747,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Jangan pernah mengetik pada sebuah situs website." @@ -3756,8 +3756,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Kontak Baru" @@ -3765,19 +3765,19 @@ msgstr "Kontak Baru" msgid "New Password:" msgstr "Kata Sandi Baru:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Kontak Baru" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3786,21 +3786,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Berikutnya" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3808,7 +3808,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3824,15 +3824,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Tidak ada dompet" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3840,7 +3840,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3869,7 +3869,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Pesan atau jumlah kosong" @@ -3878,16 +3878,16 @@ msgid "No more addresses in your wallet." msgstr "Tidak ada alamat lagi pada dompet Anda." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Tidak ada keluaran" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3899,25 +3899,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Tidak ada" @@ -3925,7 +3925,7 @@ msgstr "Tidak ada" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3947,8 +3947,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Tidak terhubung" @@ -4005,18 +4005,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Jumlah nol yang ditampilkan setelah titik desimal. Contohnya, jika ini diset ke 2, angka \"1.\" akan ditampilkan sebagai \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "Oke" @@ -4048,11 +4048,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Luring" @@ -4087,13 +4087,13 @@ msgstr "" msgid "One output per line." msgstr "Satu output per baris." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Blok Eksplorer Online" @@ -4121,11 +4121,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4145,12 +4145,12 @@ msgstr "Membuka persamaannya" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "Rekaman OpenAlias​, digunakan untuk menerima koin dan menandatangani permintaan pembayaran." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4163,12 +4163,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Pilihan" @@ -4177,8 +4177,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4192,7 +4192,7 @@ msgstr "Jumlah output" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Keluaran" @@ -4245,21 +4245,21 @@ msgstr "" msgid "Password" msgstr "Kata Sandi" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Kekuatan Kata Sandi" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Sandi dinonaktifkan, dompet ini tidak terlindungi" @@ -4274,7 +4274,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Kata Sandi berhasil diperbaharui" @@ -4282,7 +4282,7 @@ msgstr "Kata Sandi berhasil diperbaharui" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4308,9 +4308,9 @@ msgid "Pay Now" msgstr "Bayar Sekarang" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Bayar ke" @@ -4322,21 +4322,21 @@ msgstr "Bayar ke banyak" msgid "Payment Request" msgstr "Permintaan pembayaran" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Permintaan pembayaran sudah kadaluarsa" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Pembayaran terkirim." @@ -4365,7 +4365,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4397,7 +4397,7 @@ msgstr "Silahkan masukan kunci publik master (xpub) dari cosigner dompet Anda." msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4431,19 +4431,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4464,7 +4464,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4477,7 +4477,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Silahkan berbagi dengan cosigners Anda." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4501,8 +4501,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Harap tunggu" @@ -4520,7 +4520,7 @@ msgstr "Harap tunggu..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4553,7 +4553,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4561,7 +4561,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4590,7 +4590,7 @@ msgstr "Tekan 'Next' untuk membuka dompet ini." msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Pratinjau" @@ -4598,14 +4598,14 @@ msgstr "Pratinjau" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Kunci Privat" @@ -4622,7 +4622,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Diproses?" @@ -4667,7 +4667,7 @@ msgid "Proxy user" msgstr "Pengguna proxy" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Kunci publik" @@ -4679,10 +4679,10 @@ msgstr "Kunci publik" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4691,9 +4691,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "Kode QR" @@ -4721,7 +4721,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4767,8 +4767,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Terima" @@ -4781,13 +4781,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4795,7 +4795,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Alamat menerima" @@ -4808,11 +4808,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Gunakan Script" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4834,10 +4834,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Hapus" @@ -4859,20 +4859,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4884,17 +4884,17 @@ msgstr "Laporkan masalah" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Permintaan berakhir" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4910,7 +4910,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Jumlah yang diminta" @@ -4918,8 +4918,8 @@ msgstr "Jumlah yang diminta" msgid "Requestor" msgstr "Peminta" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Meminta" @@ -4952,8 +4952,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -4997,13 +4997,13 @@ msgstr "Sertifikat SSL digunakan untuk menandatangani permintaan pembayaran." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Benih" @@ -5011,8 +5011,8 @@ msgstr "Benih" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5028,7 +5028,7 @@ msgstr "Simpan faktur ke dalam file" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5057,7 +5057,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5075,11 +5075,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5092,8 +5092,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Benih" @@ -5101,7 +5101,7 @@ msgstr "Benih" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5161,7 +5161,7 @@ msgstr "Pilih server secara otomatis" msgid "Select server manually" msgstr "Pilih server secara manual" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5186,9 +5186,9 @@ msgid "Select your transaction file" msgstr "Pilih file transaksi Anda" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Kirim" @@ -5220,7 +5220,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5233,7 +5233,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5254,7 +5254,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5290,46 +5290,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Pengaturan" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Tampilkan" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5337,20 +5337,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5366,14 +5366,14 @@ msgstr "" msgid "Show QR Code" msgstr "Tampilkan Kode QR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Tampilkan sebagai kode QR" @@ -5386,11 +5386,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Tampilkan riwayat secara umum" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5465,7 +5465,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Tanda Tangani" @@ -5473,12 +5473,12 @@ msgstr "Tanda Tangani" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "&Tanda Tangani/verifikasi pesan" @@ -5491,7 +5491,7 @@ msgid "Signature" msgstr "Tanda Tangan" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Tanda tangan terverifikasi" @@ -5512,17 +5512,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Transaksi sedang ditandatangani..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Ukuran:" @@ -5536,12 +5536,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5550,11 +5550,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Sumber" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5567,11 +5567,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5587,20 +5587,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Hanya habiskan koin yang dikonfirmasi" @@ -5624,7 +5624,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5639,15 +5639,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5656,10 +5656,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Berhasil" @@ -5687,13 +5687,13 @@ msgstr "Sapu kunci privat" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Menyinkronisasikan..." @@ -5705,27 +5705,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5755,18 +5755,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5787,10 +5787,10 @@ msgstr "Besarnya biaya kirim dapat ditentukan sesuka hati oleh pengirim. Akan te msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Jumlah akan ditampilkan dalam warna merah jika Anda tidak memiliki saldo yang cukup dalam dompet Anda." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5841,7 +5841,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5850,11 +5850,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5906,20 +5906,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5931,7 +5931,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5947,7 +5947,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6022,7 +6022,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6048,11 +6048,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Blockchain ini digunakan untuk memverifikasi transaksi yang dikirim oleh server transaksi Anda." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6085,17 +6085,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Ini adalah dompet hanya-lihat" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6104,7 +6104,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Ini adalah salinan dari file di penympanan lokal dengan blockchain tertinggi." @@ -6113,12 +6113,12 @@ msgid "This may result in higher transactions fees." msgstr "Hal ini dapat mengakibatkan biaya transaksi yang lebih tinggi." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Permintaan pembayaran ini akan ditandatangani." @@ -6126,14 +6126,14 @@ msgstr "Permintaan pembayaran ini akan ditandatangani." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Benih ini memungkinkan Anda untuk memulihkan kembali dompet Anda bilamana komputer Anda rusak." @@ -6149,7 +6149,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6159,7 +6159,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6172,7 +6172,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Transaksi ini belum disimpan. Tutup?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6180,16 +6180,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Dompet ini tidak memiliki benih" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6228,30 +6228,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Untuk memastikan bahwa Anda sudah menyimpan benih dengan benar, harap ketik ulang benih Anda disini." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6271,9 +6271,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6297,7 +6297,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6305,25 +6305,25 @@ msgstr "" msgid "Total size" msgstr "Ukuran total" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transaksi" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6332,20 +6332,20 @@ msgid "Transaction ID" msgstr "ID Transaksi" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID Transaksi:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6361,7 +6361,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6374,8 +6374,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transaksi tidak berhubungan dengan dompet Anda" @@ -6388,9 +6388,9 @@ msgid "Transaction:" msgstr "Transaksi:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transaksi" @@ -6411,11 +6411,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6424,8 +6424,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6449,7 +6449,7 @@ msgstr "Tidak dapat membuat CSV" msgid "Unable to export history" msgstr "Tidak dapat mengekspor riwayat" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6505,8 +6505,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6532,16 +6532,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Tidak diketahui" @@ -6549,7 +6549,7 @@ msgstr "Tidak diketahui" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6557,7 +6557,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6569,7 +6569,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6589,7 +6589,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6621,12 +6621,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Gunakan Tor Proxy" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6635,18 +6635,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Gunakan sebagai server" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Gunakan alamat kembalian" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Gunakan beberapa alamat dompet" @@ -6662,24 +6662,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Gunakan setting konfigurasi untuk mengatur ssl chain dan ssl privat key." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Gunakan dialog ini untuk menambahkan password pada dompet Anda." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Gunakan dialog ini untuk mengubah sandi Anda." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6699,7 +6699,7 @@ msgstr "Menggunakan alamat kembalian membuat orang lain lebih sulit untuk mengik msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6712,7 +6712,7 @@ msgstr "" msgid "Verify" msgstr "Verifikasi" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6764,11 +6764,11 @@ msgstr "Lihat Faktur" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Lihat di blok eksplorer" @@ -6784,7 +6784,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6793,7 +6793,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "PERINGATAN" @@ -6821,22 +6821,22 @@ msgstr "Dompet" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6844,11 +6844,11 @@ msgstr "" msgid "Wallet backup created" msgstr "Membuat backup dompet anda" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6864,15 +6864,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6880,7 +6880,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6888,7 +6888,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6921,11 +6921,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6974,32 +6974,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Tanda tangan salah" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7009,7 +7009,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Anda telah mengikuti cabang" @@ -7026,11 +7026,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7050,7 +7050,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7058,11 +7058,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7074,11 +7074,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7105,7 +7105,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7125,7 +7125,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7133,7 +7133,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7154,13 +7154,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "Akun anda telah dipindahkan ke" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Bitcoins Anda dilindungi oleh passworld. Namun, file dompet Anda tidak di enkripsi." @@ -7181,7 +7181,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7197,7 +7197,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7210,7 +7210,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "kunci benih yang anda tambahkan adalah" @@ -7219,12 +7219,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Benih dompet Anda penting!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Server anda pada cabang" @@ -7237,7 +7237,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Benih untuk memulihkan wallet Anda adalah:" @@ -7246,12 +7246,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Twoja historia portfela została pomyślnie wyeksportowana." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Dompet anda tidak dilindungi." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Dompet anda telah dilindungi oleh kata sandi dan di enkripsi." @@ -7264,7 +7264,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Jumlah nol dibelakang koma" @@ -7325,7 +7325,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7334,8 +7334,8 @@ msgid "are frozen" msgstr "Dibekukan" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "blok" @@ -7343,8 +7343,8 @@ msgstr "blok" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7356,7 +7356,7 @@ msgstr "orang yang menandatangani catatan sebagai dukungan untuk kredit" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7372,7 +7372,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7397,7 +7397,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "proszę czekać..." @@ -7432,15 +7432,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "tidak diketahui" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7461,7 +7461,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "Hanya dapat dilihat" @@ -7469,7 +7469,7 @@ msgstr "Hanya dapat dilihat" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7532,15 +7532,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7548,7 +7548,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7556,11 +7556,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7572,23 +7572,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/it_IT/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/it_IT/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/it_IT/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/it_IT/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/it_IT/electron-cash.po b/contrib/electrum-locale/locale/it_IT/vilight.po similarity index 80% rename from contrib/electrum-locale/locale/it_IT/electron-cash.po rename to contrib/electrum-locale/locale/it_IT/vilight.po index 06ea22483..43ff354e2 100644 --- a/contrib/electrum-locale/locale/it_IT/electron-cash.po +++ b/contrib/electrum-locale/locale/it_IT/vilight.po @@ -24,7 +24,7 @@ msgstr " (Nessun tasso FX disponibile)" msgid " These settings affects the fields in the Send tab" msgstr " Queste impostazioni influenzano i campi nella sezione Invia" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " copiato negli appunti" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d minuti" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d elementi validi" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Indirizzi" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "*" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 ora" msgid "1 week" msgstr "1 settimana" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "È stata creata una copia del tuo portafogli in" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "Un wallet deterministico verrà creato utilizzando la chiave privata principale. Questo wallet sarà liberamente in grado di inviare e ricevere Vitae." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "Un wallet deterministico verrà creato utilizzando la chiave pubblica principale fornita. Questo wallet sarà solo per monitoraggio." @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Una commissione viene aggiunta automaticamente a questo campo come suggerimento. È possibile ignorarla. La commissione suggerita aumenta con la dimensione della transazione." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "Un wallet con questo nome esiste già. Per favore inserisci un nome diverso per proseguire." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "Un wallet con questo nome esiste già, per favore riprova." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "Un wallet con questo nome esiste già. Impossibile proseguire." @@ -489,12 +489,12 @@ msgstr "Aggiungi una tastiera virtuale opzionale alla finestra di dialogo della msgid "Add cosigner" msgstr "Aggiungi cofirmatario" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "Aggiungi ai Contatti" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "&Commissioni aggiuntive" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Indirizzo" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "Convertitore di indirizzo" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "Dettagli dell'indirizzo" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "Nessun indirizzo nel portafoglio." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "Indirizzo da convertire" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Tutti" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "Tutte le traduzioni" @@ -603,11 +603,11 @@ msgstr "Tutte le traduzioni" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "Tutto fatto, pronti per partire." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "Già scaduto" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Quantità" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Quantità ricevuta:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Quantità inviata" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Quantità da inviare" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "È stato rilevato un Digital Bitbox non inizializzato." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "Si è verificato un errore sconosciuto. Impossibile proseguire." @@ -683,7 +683,7 @@ msgstr "{} senza nome" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Aspetto" @@ -718,7 +718,7 @@ msgstr "Sei sicuro di voler continuare?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "Sei sicuro di voler disinstallare il plugin selezionato?" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "Sei sicuro di voler cancellare questo contatto?" @@ -738,7 +738,7 @@ msgstr "Audio MODEM" msgid "Audio Modem Settings" msgstr "Impostazioni Audio Modem" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "Autenticati, per favore" @@ -796,19 +796,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Indietro" @@ -816,9 +816,9 @@ msgstr "Indietro" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Saldo" @@ -853,7 +853,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Unità base" @@ -865,7 +865,7 @@ msgstr "Unità base del tuo portafogli." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "Prima di segnalare un bug, aggiorna Electrum Cash alla versione più recente (ultima release o git HEAD) e nel report includi il numero di versione." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "Biometrica non disponibile" @@ -898,12 +898,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Trasmissione" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Trasmettendo la transazione..." @@ -919,7 +919,7 @@ msgstr "CPFP non più valido" msgid "CSV" msgstr "CSV" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "Calcolo Dettagli Tx in corso..." @@ -931,41 +931,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Annulla" @@ -990,7 +990,7 @@ msgstr "" msgid "Cancelled by user" msgstr "Annullato dall'utente" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "Non è possibile eliminare il portafoglio in uso" @@ -998,13 +998,13 @@ msgstr "Non è possibile eliminare il portafoglio in uso" msgid "Cannot add this cosigner:" msgstr "Impossibile aggiungere questo cofirmatario:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "Non è possibile visualizzare la transazione richiesta perché non hai un portafoglio aperto.\n\n" "Apri un portafoglio e riprova." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "Non è possibile visualizzare la transazione richiesta poiché già aperta un'altra finestra.\n\n" @@ -1018,16 +1018,16 @@ msgstr "Impossibile trovare libreria python per" msgid "Cannot read file" msgstr "Impossibile leggere il file" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "Non è possibile inviare/ricevere nuove transazioni." #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "Impossibile firmare messaggi con questo tipo di indirizzo." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "Non è possibile specificare chiavi private e indirizzi nello stesso portafoglio. Gli indirizzi finiranno in un portafoglio di monitoraggio e le chiavi private in un portafoglio di spesa. Rimuovi gli elementi incompatibili (trascinandoli verso sinistra)." @@ -1104,7 +1104,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "Cash Address" @@ -1112,7 +1112,7 @@ msgstr "Cash Address" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "Formato dell'indirizzo CashAddr" @@ -1196,25 +1196,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "Rilevata divisione della catena al blocco %d" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Cambia" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "Indirizzo per il resto" @@ -1230,8 +1230,8 @@ msgstr "Cambia PIN" msgid "Change Password" msgstr "Cambia password" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "Cambia o imposta la Password" @@ -1267,7 +1267,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1288,7 +1288,7 @@ msgstr "Scegli un file di backup:" msgid "Choose a password to encrypt your wallet keys." msgstr "Scelgi una password per cifrare le chiavi del tuo portafogli." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1327,8 +1327,8 @@ msgstr "Scegliere quale visualizzatore di blocchi online usare per le funzioni c msgid "Choose..." msgstr "Scegli..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Cancella" @@ -1379,7 +1379,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1412,7 +1412,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1428,7 +1428,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1444,7 +1444,7 @@ msgstr "" msgid "Con&tacts" msgstr "Con&tatti" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1468,7 +1468,7 @@ msgstr "Conferma seed" msgid "Confirm Seed Extension" msgstr "Conferma l'estensione del seed" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1480,7 +1480,7 @@ msgstr "Conferma l'attivazione/disattivazione della protezione della frase segre msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1553,13 +1553,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "Nodo connesso" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1580,34 +1580,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Contatti" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1625,10 +1625,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1653,7 +1653,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1661,7 +1661,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1681,7 +1681,7 @@ msgstr "" msgid "Copy URI" msgstr "Copia URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1689,7 +1689,7 @@ msgstr "" msgid "Copy and Close" msgstr "Copia e chiudi" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1698,8 +1698,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Copia negli appunti" @@ -1766,7 +1766,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1774,8 +1774,8 @@ msgstr "" msgid "Create" msgstr "Crea" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1783,7 +1783,7 @@ msgstr "" msgid "Create a new seed" msgstr "Crea un nuovo seed" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1841,8 +1841,8 @@ msgstr "Scuro/chiaro" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Data" @@ -1873,15 +1873,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Elimina" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1893,12 +1893,12 @@ msgstr "Vuoi eliminare la fattura?" msgid "Delete wallet file?" msgstr "Vuoi eliminare il portafogli?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1906,7 +1906,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1914,22 +1914,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Descrizione" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Descrizione della transazione (facoltativa)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Dettagli" @@ -1979,7 +1979,7 @@ msgstr "Disattiva le passphrases" msgid "Disabled" msgstr "Disabilitato/a" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1996,7 +1996,7 @@ msgid "Do not pair" msgstr "Non abbinare" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Non conservarlo in modo digitale/elettronico." @@ -2028,7 +2028,7 @@ msgstr "Vuoi inviare questa segnalazione?" msgid "Do you wish to continue?" msgstr "Desideri continuare?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" @@ -2036,18 +2036,18 @@ msgstr "Vuoi seguire il ramo\n" "{}@{}\n" "?" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2065,15 +2065,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2089,17 +2089,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Modifica commissioni manualmente" @@ -2113,7 +2113,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2122,7 +2122,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2130,7 +2130,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2154,7 +2154,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2195,7 +2195,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2294,12 +2294,12 @@ msgstr "Cifra" msgid "Encrypt wallet file" msgstr "Cifra il portafogli" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Cifra/decifra messaggio" @@ -2323,7 +2323,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2340,10 +2340,10 @@ msgid "Enter Passphrase" msgstr "Inserisci frase segreta" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Inserisci la Password" @@ -2371,7 +2371,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Inserisci una lista di output nel campo 'Paga a'." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2403,11 +2403,11 @@ msgstr "Inserisci chiave del cofirmatario" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2439,7 +2439,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2470,17 +2470,17 @@ msgid "Enter your password or choose another file." msgstr "Inserisci la tua password o scegli un altro file." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Inserisci la tua password per continuare" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2499,11 +2499,11 @@ msgstr "Cancella il Digital Bitbox" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Errore" @@ -2535,7 +2535,7 @@ msgstr "Errore: doppione di chiave pubblica principale" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2572,7 +2572,7 @@ msgstr "Esporta cronologia" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2585,7 +2585,7 @@ msgid "Extend this seed with custom words" msgstr "Prolunga questo seed con parole personalizzate" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2611,7 +2611,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Aggiornamento password non riuscito" @@ -2620,12 +2620,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Commissione" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2643,27 +2643,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Commissioni" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Moneta a corso forzoso" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Moneta a corso forzoso" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "" @@ -2684,11 +2684,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Segui questo ramo" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2723,8 +2723,8 @@ msgid "Format: address, amount" msgstr "Formato: indirizzo, quantità" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "Congela" @@ -2766,11 +2766,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2782,7 +2782,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "Finanziato" @@ -2810,24 +2810,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "Genera un nuovo portafogli casuale" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2864,10 +2864,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Altezza" @@ -2879,11 +2879,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Ecco la tua chiave pubblica principale." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2910,8 +2910,8 @@ msgstr "Schermata principale" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2964,7 +2964,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2985,7 +2985,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3014,7 +3014,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "Se non sei sicuro di che cos'è, lascia questo campo invariato." @@ -3059,12 +3059,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3081,12 +3081,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "Se il tuo portafogli contiene dei fondi, assicurati di aver salvato il suo seed." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3096,14 +3096,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importa" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3111,7 +3111,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "Importa indirizzi Bitcoin" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3139,19 +3139,19 @@ msgstr "Importa le chiavi private" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3205,8 +3205,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Informazioni" @@ -3230,8 +3230,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3243,7 +3243,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Inserisci i dati grezzi della transazione" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Input" @@ -3265,8 +3265,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Fondi insufficienti" @@ -3278,25 +3278,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Indirizzo non valido" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Quantità non valida" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3329,9 +3329,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3340,7 +3340,7 @@ msgid "Invalid amount" msgstr "Importo non valido" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3352,7 +3352,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3372,7 +3372,7 @@ msgstr "Fatture" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3485,7 +3485,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3525,7 +3525,7 @@ msgstr "Carica transazione" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3578,12 +3578,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3599,16 +3599,16 @@ msgstr "Chiavi pubbliche principali" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Commissione massima superata" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3645,7 +3645,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Commissione di mining" @@ -3657,7 +3657,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "Opzioni di abbinamento dispositivi mobili" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3681,15 +3681,15 @@ msgstr "Portafogli multifirma" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3699,12 +3699,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Nome" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3717,11 +3717,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Rete" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3734,7 +3734,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Mai" @@ -3744,7 +3744,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Non divulgare mai il tuo seed." @@ -3753,7 +3753,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Non digitare su un sito web." @@ -3762,8 +3762,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Nuovo contatto" @@ -3771,19 +3771,19 @@ msgstr "Nuovo contatto" msgid "New Password:" msgstr "Nuova password:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Nuovo contatto" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "Nuova transazione ricevuta: {}" @@ -3792,21 +3792,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Avanti" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3814,7 +3814,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3830,15 +3830,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Nessun portafogli" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3846,7 +3846,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3875,7 +3875,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Nessun messaggio o importo" @@ -3884,16 +3884,16 @@ msgid "No more addresses in your wallet." msgstr "Nessun altroindirizzo nel tuo portafogli." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Nessun risultato" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3905,25 +3905,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Nessuno/a" @@ -3931,7 +3931,7 @@ msgstr "Nessuno/a" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3953,8 +3953,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Non connesso" @@ -4011,18 +4011,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Numero di zeri visualizzati dopo la virgola. Ad esempio, se questa impostazione è fissata a 2, il numero \"1\" sarà visualizzato come \"1,00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4055,11 +4055,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Disconnesso" @@ -4094,13 +4094,13 @@ msgstr "" msgid "One output per line." msgstr "Un risultato per linea." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4128,11 +4128,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4152,12 +4152,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "Registro OpenAlias, viene usato per ricevere moneta e firmare richieste di pagamento." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4170,12 +4170,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Opzioni" @@ -4184,8 +4184,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4200,7 +4200,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Uscite" @@ -4253,21 +4253,21 @@ msgstr "" msgid "Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Sicurezza password" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Password disabilitata, portafogli non protetto" @@ -4282,7 +4282,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "La password è stata aggiornata con successo" @@ -4290,7 +4290,7 @@ msgstr "La password è stata aggiornata con successo" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4316,9 +4316,9 @@ msgid "Pay Now" msgstr "Paga ora" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Paga a" @@ -4330,21 +4330,21 @@ msgstr "Paga a molti" msgid "Payment Request" msgstr "Richiesta di pagamento" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Il pagamento richiesto è scaduto" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Pagamento inviato." @@ -4373,7 +4373,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4405,7 +4405,7 @@ msgstr "Inserisci la chiave pubblica principale (xpub) del tuo cofirmatario." msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4439,19 +4439,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4472,7 +4472,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4485,7 +4485,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Condividilo con i tuoi cofirmatari." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4509,8 +4509,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Rimani in attesa" @@ -4528,7 +4528,7 @@ msgstr "Rimani in attesa..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4561,7 +4561,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Porta" @@ -4569,7 +4569,7 @@ msgstr "Porta" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4598,7 +4598,7 @@ msgstr "Premi 'Avanti' per aprire questo portafogli." msgid "Press Enter" msgstr "Premi Invio" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Anteprima" @@ -4606,14 +4606,14 @@ msgstr "Anteprima" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "Chiave privata" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Chiave privata" @@ -4630,7 +4630,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Vuoi continuare?" @@ -4675,7 +4675,7 @@ msgid "Proxy user" msgstr "Utente proxy" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Chiave pubblica" @@ -4687,10 +4687,10 @@ msgstr "Chiavi pubbliche" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4699,9 +4699,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "Codice QR" @@ -4729,7 +4729,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "Domanda" @@ -4776,8 +4776,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Ricevi" @@ -4790,13 +4790,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "Ricezione" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4804,7 +4804,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Indirizzo ricevente" @@ -4817,11 +4817,11 @@ msgid "Recover from a seed you have previously written down" msgstr "Recupera da un seed scritto precedentemente" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Script di riscossione" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4843,10 +4843,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Rimuovi" @@ -4868,20 +4868,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4893,17 +4893,17 @@ msgstr "Segnala bug" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Scadenza richiesta" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "Richiedi pagamento" @@ -4919,7 +4919,7 @@ msgstr "Richiesta inviata." msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Importo richiesto" @@ -4927,8 +4927,8 @@ msgstr "Importo richiesto" msgid "Requestor" msgstr "Richiedente" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Richieste" @@ -4961,8 +4961,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5006,13 +5006,13 @@ msgstr "Certificato SSL usato per firmare le richieste di pagamento." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Salva" @@ -5020,8 +5020,8 @@ msgstr "Salva" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5037,7 +5037,7 @@ msgstr "Salva fattura in un file" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5066,7 +5066,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "Tipo di script" @@ -5084,11 +5084,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5101,8 +5101,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5110,7 +5110,7 @@ msgstr "" msgid "Seed Entered" msgstr "Seed inserito" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5170,7 +5170,7 @@ msgstr "Seleziona server automaticamente" msgid "Select server manually" msgstr "Seleziona il server manualmente" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5195,9 +5195,9 @@ msgid "Select your transaction file" msgstr "Seleziona il file della transazioni" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Invia" @@ -5229,7 +5229,7 @@ msgstr "" msgid "Send via e-mail" msgstr "Invia tramite e-mail" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5242,7 +5242,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5263,7 +5263,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "Il server è in ritardo ({} blocchi)" @@ -5299,46 +5299,46 @@ msgstr "Imposta un PIN" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "impostazioni" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Mostra" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5346,20 +5346,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "Mostra saldo in moneta a corso forzoso per gli indirizzi" @@ -5375,14 +5375,14 @@ msgstr "" msgid "Show QR Code" msgstr "Mostra Codice QR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Mostra come codice QR" @@ -5395,11 +5395,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Mostra la cronologia de tassi di conversione" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5474,7 +5474,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Firma" @@ -5482,12 +5482,12 @@ msgstr "Firma" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Firma/verifica messaggio" @@ -5500,7 +5500,7 @@ msgid "Signature" msgstr "Firma" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Firma verificata" @@ -5521,17 +5521,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Firma della transazione..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "Firmare con un indirizzo in realtà significa firmare con la chiave privata corrispondente e verificare con la chiave pubblica corrispondente. L'indirizzo che hai inserito non ha una chiave pubblica unica, per cui tali operazioni non possono essere eseguite." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Dimensione:" @@ -5545,12 +5545,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "Spiacente!" @@ -5559,11 +5559,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Fonte" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5576,11 +5576,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "Spendi" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5596,20 +5596,20 @@ msgstr "" msgid "Spend from" msgstr "Spendi da" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Spendi solo monete confermate" @@ -5633,7 +5633,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5648,15 +5648,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Stato" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Stato:" @@ -5665,10 +5665,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "Passaggio {}/24. Inserisci parola del seed come spiegato sul tuo {}:" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Successo" @@ -5696,13 +5696,13 @@ msgstr "Spazzola chiavi private" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Sincronizzazione..." @@ -5714,27 +5714,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "Portafogli TREZOR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "Testo copiato negli appunti" @@ -5764,18 +5764,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "Il PIN non può essere più lungo di 9 caratteri." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5796,10 +5796,10 @@ msgstr "La commissione può essere stabilita liberamente dal mittente. Tuttavia, msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "L'importo sarà mostrato in rosso se non hai abbastanza fondi nel tuo portafogli." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5851,7 +5851,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5860,11 +5860,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5916,20 +5916,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5941,7 +5941,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5957,7 +5957,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6033,7 +6033,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6059,11 +6059,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6096,17 +6096,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Questo è un portafoglio di sola consultazione" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "Questo è un portafoglio di sola consultazione." @@ -6115,7 +6115,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6124,12 +6124,12 @@ msgid "This may result in higher transactions fees." msgstr "Questo potrebbe risultare in una transazione con commissioni più elevate." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Questa richiesta di pagamento verrà firmata." @@ -6137,14 +6137,14 @@ msgstr "Questa richiesta di pagamento verrà firmata." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "Questo plugin facilita l'utilizzo dei portafogli multifirma." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Questo seed sarà in grado di recuperare il tuo portafogli in caso di guasti al computer" @@ -6160,7 +6160,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6170,7 +6170,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6183,7 +6183,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Questa transazione non è salvata. Vuoi chiudere ugualmente?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6191,16 +6191,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Questo portafogli non ha seed" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6239,30 +6239,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "Per creare un portafogli di spesa, inserisci una chiave privata principale (xprv/yprv/zprv)." #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "Per creare un portafogli di sola visione, inserisci la tua chiave pubblica principale (xpub/ypub/zpub)." #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Per essere sicuri che hai conservato il seed, riscrivilo qui." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6282,9 +6282,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6308,7 +6308,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6316,25 +6316,25 @@ msgstr "" msgid "Total size" msgstr "Dimensione totale" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transazione" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6343,20 +6343,20 @@ msgid "Transaction ID" msgstr "ID transazione" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID transazione:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6372,7 +6372,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6385,8 +6385,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transazione non legata al tuo portafogli" @@ -6399,9 +6399,9 @@ msgid "Transaction:" msgstr "Transazione" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transazioni" @@ -6422,11 +6422,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6435,8 +6435,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6460,7 +6460,7 @@ msgstr "Impossibile creare il CSV" msgid "Unable to export history" msgstr "Impossibile esportare la cronologia" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6516,8 +6516,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "Scongela" @@ -6543,16 +6543,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Sconosciuto" @@ -6560,7 +6560,7 @@ msgstr "Sconosciuto" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "Non firmato" @@ -6568,7 +6568,7 @@ msgstr "Non firmato" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6580,7 +6580,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "Inutilizzato" @@ -6600,7 +6600,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6632,12 +6632,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Usa proxy Tor" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6646,18 +6646,18 @@ msgid "Use a hardware device" msgstr "Usa un dispositivo hardware" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Usa come server" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Usa indirizzo di cambio" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Usa indirizzi multipli per il resto" @@ -6673,24 +6673,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Usa setconfig per settare ssl_chain e ssl_privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Usa questa finestra di dialogo per modificare la tua password." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "Utilizzato" @@ -6710,7 +6710,7 @@ msgstr "Usare un indirizzo di cambio rende più difficile, per le altre persone, msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6723,7 +6723,7 @@ msgstr "" msgid "Verify" msgstr "Verifica" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6777,11 +6777,11 @@ msgstr "Vedi fattura" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Visualizza su block explorer" @@ -6797,7 +6797,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6806,7 +6806,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "ATTENZIONE" @@ -6834,22 +6834,22 @@ msgstr "Portafogli" msgid "Wallet Information" msgstr "Informazioni sul portafoglio" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6857,11 +6857,11 @@ msgstr "" msgid "Wallet backup created" msgstr "Creato backup del portafogli" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6877,15 +6877,15 @@ msgstr "" msgid "Wallet name" msgstr "Nome portafoglio" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6901,7 +6901,7 @@ msgstr "" msgid "Wallet type" msgstr "Tipo di portafoglio" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "Portafogli" @@ -6934,11 +6934,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6987,32 +6987,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "Tipo di chiave errato" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Firma sbagliata" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "Sì" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7022,7 +7022,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Stai seguendo il ramo" @@ -7039,11 +7039,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7063,7 +7063,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7071,11 +7071,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7087,11 +7087,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7118,7 +7118,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7138,7 +7138,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7146,7 +7146,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7167,13 +7167,13 @@ msgstr "Il tuo portafogli Ledger vuole comunicarti un codice PIN irripetibile.{cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "URIをコピー" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "コピーして閉じる" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "アドレスをコピー" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "暗い/明るい" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "日付" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "削除" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "請求を削除しますか?" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "備考" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "取引の備考 (空欄可)" #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "詳細" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "電子機器などに保存しないで下さい。" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "続けますか?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "手数料を手動で編集" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "暗号化する" msgid "Encrypt wallet file" msgstr "ウォレットの暗号化" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "メッセージの暗号化・解読" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "パスフレーズ入力" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "パスワードを入力してください" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "「送信先」にアドレスのリストを入力して下さい。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "パスワードを入力して下さい。" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "続行するにはパスワードを入力してください" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "エラー" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "履歴をエクスポート" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "単語を追加してシードを補強する" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "パスワードを変更できませんでした" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "手数料" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "手数料" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "通貨" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "法定通貨" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "ファイル" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "この分岐を選択する" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "形式: アドレス, 金額" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "ブロック高" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "以下がマスター公開鍵です。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "ホスト" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "インポート" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "秘密鍵をインポート" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "情報" @@ -3224,8 +3224,8 @@ msgid_plural "Inputs ({num_inputs})" msgstr[0] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "入力値" @@ -3237,7 +3237,7 @@ msgstr "" msgid "Input raw transaction" msgstr "RAW形式の取引情報を読み込む" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "送り手" @@ -3259,8 +3259,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "残高不足" @@ -3272,25 +3272,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "アドレスが正しくありません" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "金額が正しくありません" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3323,9 +3323,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3334,7 +3334,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3346,7 +3346,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3366,7 +3366,7 @@ msgstr "請求記録" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3479,7 +3479,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3519,7 +3519,7 @@ msgstr "取引情報を読み込む" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3572,12 +3572,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3593,16 +3593,16 @@ msgstr "マスター公開鍵" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "最大" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "最高手数料に達した" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3639,7 +3639,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "採掘手数料" @@ -3651,7 +3651,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3675,15 +3675,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3693,12 +3693,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "名前" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3711,11 +3711,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "ネットワーク" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3728,7 +3728,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "今後しない" @@ -3738,7 +3738,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "絶対にシードを開示しないでください。" @@ -3747,7 +3747,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Webサイトで入力したりしないで下さい。" @@ -3756,8 +3756,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "新規連絡先" @@ -3765,19 +3765,19 @@ msgstr "新規連絡先" msgid "New Password:" msgstr "新しいパスワード:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "新規連絡先" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3786,21 +3786,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "次へ" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3808,7 +3808,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3824,15 +3824,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "ウォレットがありません" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3840,7 +3840,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3869,7 +3869,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "メッセージ及び金額がありません" @@ -3878,16 +3878,16 @@ msgid "No more addresses in your wallet." msgstr "ウォレットにはこれ以上アドレスがありません。" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "出力がありません(残高不足)" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3899,25 +3899,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "なし" @@ -3925,7 +3925,7 @@ msgstr "なし" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3947,8 +3947,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "未接続" @@ -4005,18 +4005,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "数字で小数点以下に表示するゼロの数を設定します。例えば2にした場合、\"1.\" の代わりに \"1.00\" と表示されます。" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4048,11 +4048,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "オフライン" @@ -4087,13 +4087,13 @@ msgstr "" msgid "One output per line." msgstr "1行につき1つ送金先を入力して下さい。" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "ブロックエクスプローラー" @@ -4121,11 +4121,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4145,12 +4145,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "OpenAliasは記録・コインの受取・送金の共同署名などを行います。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4163,12 +4163,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "オプション" @@ -4177,8 +4177,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4192,7 +4192,7 @@ msgstr "出力値" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "受け手" @@ -4245,21 +4245,21 @@ msgstr "" msgid "Password" msgstr "パスワード" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "パスワードの強度" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "パスワードは無効化されており、ウォレットは保護されていません" @@ -4274,7 +4274,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "パスワードを変更しました" @@ -4282,7 +4282,7 @@ msgstr "パスワードを変更しました" msgid "Password:" msgstr "パスワード:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4308,9 +4308,9 @@ msgid "Pay Now" msgstr "今すぐ支払う" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "送信先" @@ -4322,21 +4322,21 @@ msgstr "一括送金" msgid "Payment Request" msgstr "支払い請求" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "支払請求の期限が切れています" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "取引情報を送信しました。" @@ -4365,7 +4365,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4397,7 +4397,7 @@ msgstr "共同署名者のマスター公開鍵(xpub) を入力して下さい msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4431,19 +4431,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4464,7 +4464,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4477,7 +4477,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "これは、共同署名者で共有して下さい。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4501,8 +4501,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "少々お待ちください" @@ -4520,7 +4520,7 @@ msgstr "少々お待ち下さい..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4553,7 +4553,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "ポート" @@ -4561,7 +4561,7 @@ msgstr "ポート" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4590,7 +4590,7 @@ msgstr "「次へ」をクリックすると選択されたウォレットを開 msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "プレビュー" @@ -4598,14 +4598,14 @@ msgstr "プレビュー" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "秘密鍵" @@ -4622,7 +4622,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "続行しますか?" @@ -4667,7 +4667,7 @@ msgid "Proxy user" msgstr "プロキシ ユーザー名" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "公開鍵" @@ -4679,10 +4679,10 @@ msgstr "公開鍵" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4691,9 +4691,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR コード" @@ -4721,7 +4721,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4767,8 +4767,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "請求" @@ -4781,13 +4781,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4795,7 +4795,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "入金アドレス" @@ -4808,11 +4808,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "文字列に変換" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4834,10 +4834,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "消去" @@ -4859,20 +4859,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4884,17 +4884,17 @@ msgstr "バグ報告" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "請求の有効期限" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4910,7 +4910,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "請求金額" @@ -4918,8 +4918,8 @@ msgstr "請求金額" msgid "Requestor" msgstr "請求者" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "リクエスト" @@ -4952,8 +4952,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -4997,13 +4997,13 @@ msgstr "SSL証明書は支払いリクエストを署名するために使われ msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "保存" @@ -5011,8 +5011,8 @@ msgstr "保存" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5028,7 +5028,7 @@ msgstr "請求をファイルへ保存" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5057,7 +5057,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5075,11 +5075,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5092,8 +5092,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "シード" @@ -5101,7 +5101,7 @@ msgstr "シード" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5161,7 +5161,7 @@ msgstr "サーバーを自動的に選択する" msgid "Select server manually" msgstr "サーバを手動で選択する" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5186,9 +5186,9 @@ msgid "Select your transaction file" msgstr "取引情報の保存先を選択" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "送信" @@ -5220,7 +5220,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5233,7 +5233,7 @@ msgstr "サーバ" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5254,7 +5254,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5290,46 +5290,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "設定" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "表示" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5337,20 +5337,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5366,14 +5366,14 @@ msgstr "" msgid "Show QR Code" msgstr "QRコードを表示" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "QRコードの表示" @@ -5386,11 +5386,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "レートの履歴を見る" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5465,7 +5465,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "署名" @@ -5473,12 +5473,12 @@ msgstr "署名" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "メッセージの署名・署名確認" @@ -5491,7 +5491,7 @@ msgid "Signature" msgstr "署名" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "署名認証完了" @@ -5512,17 +5512,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "取引の署名中..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "サイズ:" @@ -5536,12 +5536,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5550,11 +5550,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "ソース" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5567,11 +5567,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5587,20 +5587,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "承認されたコインだけ消費" @@ -5624,7 +5624,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5639,15 +5639,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "状態" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "状態 :" @@ -5656,10 +5656,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "成功" @@ -5687,13 +5687,13 @@ msgstr "秘密鍵のスイープ" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "同期中..." @@ -5705,27 +5705,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5755,18 +5755,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5787,10 +5787,10 @@ msgstr "手数料は送信者が決めることができますが、手数料の msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "残高不足の場合、数字が赤字として表示されます。" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5841,7 +5841,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5850,11 +5850,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5906,20 +5906,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5931,7 +5931,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5947,7 +5947,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6022,7 +6022,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6048,11 +6048,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "ブロックチェーンは、サーバから受信した取引情報の検証に使われます。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6085,17 +6085,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "このウォレットは読み取り専用です。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6104,7 +6104,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "これはブロックチェーンのローカルコピーのブロック高です。" @@ -6113,12 +6113,12 @@ msgid "This may result in higher transactions fees." msgstr "高額な送金手数料となるかもしれません" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "この支払請求は署名されるでしょう。" @@ -6126,14 +6126,14 @@ msgstr "この支払請求は署名されるでしょう。" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "このシードで、コンピュータの故障などの場合にウォレットを復活させることができます。" @@ -6149,7 +6149,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6159,7 +6159,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6172,7 +6172,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "この取引の情報は保存されていません。本当に閉じても良いですか?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6180,16 +6180,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "このウォレットはシードがありません。" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6228,30 +6228,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "シードはメモをとってバックアップしましたか?確認のためここに再度入力をお願いします。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6271,9 +6271,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6297,7 +6297,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6305,25 +6305,25 @@ msgstr "" msgid "Total size" msgstr "合計サイズ" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "取引" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6332,20 +6332,20 @@ msgid "Transaction ID" msgstr "取引ID" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "取引ID:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6361,7 +6361,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6374,8 +6374,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "このウォレットと関係ない取引情報です" @@ -6388,9 +6388,9 @@ msgid "Transaction:" msgstr "取引:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "取引" @@ -6411,11 +6411,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6424,8 +6424,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6449,7 +6449,7 @@ msgstr "CSVの作成ができませんでした" msgid "Unable to export history" msgstr "履歴エクスポートに失敗しました" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6505,8 +6505,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6532,16 +6532,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "不明" @@ -6549,7 +6549,7 @@ msgstr "不明" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6557,7 +6557,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6569,7 +6569,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6589,7 +6589,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6621,12 +6621,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Torプロキシを使用する" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6635,18 +6635,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "サーバとして使う" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "お釣りアドレスを使う" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "複数のお釣りアドレスを使う" @@ -6662,24 +6662,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "ssl_chainとssl_privkeyをセットするにはsetconfigを使用して下さい。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "この入力画面では、ウォレットにパスワードを追加できます。" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "この入力画面では、パスワードを変更できます。" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6700,7 +6700,7 @@ msgstr "お釣りアドレスを使うと、他人があなたの取引履歴を msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6713,7 +6713,7 @@ msgstr "" msgid "Verify" msgstr "検証" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6765,11 +6765,11 @@ msgstr "請求を見る" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "ブロックエクスプローラーで閲覧" @@ -6785,7 +6785,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6794,7 +6794,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "警告" @@ -6822,22 +6822,22 @@ msgstr "ウォレット" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6845,11 +6845,11 @@ msgstr "" msgid "Wallet backup created" msgstr "ウォレットのバックアップが作成されました" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6865,15 +6865,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6881,7 +6881,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6889,7 +6889,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6922,11 +6922,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6975,32 +6975,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "署名が間違っています" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7010,7 +7010,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "あなたは分岐したブロックチェーンを参照しています" @@ -7027,11 +7027,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7051,7 +7051,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7059,11 +7059,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7075,11 +7075,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7106,7 +7106,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7126,7 +7126,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7134,7 +7134,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7155,13 +7155,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "あなたのアカウントは次の場所に移動しました" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "あなたのビットコインはパスワードで保護されていますが、ウォレットファイルは暗号化されていません。" @@ -7182,7 +7182,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7198,7 +7198,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7211,7 +7211,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "シードの拡張部分:" @@ -7220,12 +7220,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "シードは大事に扱ってください!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "接続しているサーバーは分岐したブロックチェーン上にいます" @@ -7238,7 +7238,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "ウォレットの再生用シードです:" @@ -7247,12 +7247,12 @@ msgid "Your wallet history has been successfully exported." msgstr "ウォレットの履歴が正常にエクスポートされました。" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "ウォレットは保護されていません。" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "あなたのウォレットはパスワードで暗号化され、保護されています。" @@ -7265,7 +7265,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "小数点以降のゼロの数" @@ -7326,7 +7326,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7335,8 +7335,8 @@ msgid "are frozen" msgstr "凍結" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "ブロック" @@ -7344,8 +7344,8 @@ msgstr "ブロック" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7357,7 +7357,7 @@ msgstr "共同署名者" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7373,7 +7373,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7398,7 +7398,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "しばらくお待ちください..." @@ -7433,15 +7433,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "不明" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7462,7 +7462,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "読み取り専用" @@ -7470,7 +7470,7 @@ msgstr "読み取り専用" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7533,15 +7533,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7549,7 +7549,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7557,11 +7557,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7573,23 +7573,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/ko_KR/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/ko_KR/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/ko_KR/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/ko_KR/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/ko_KR/electron-cash.po b/contrib/electrum-locale/locale/ko_KR/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/ko_KR/electron-cash.po rename to contrib/electrum-locale/locale/ko_KR/vilight.po index ae172d69b..4dbbc38a8 100644 --- a/contrib/electrum-locale/locale/ko_KR/electron-cash.po +++ b/contrib/electrum-locale/locale/ko_KR/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d 분" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "지갑 주소" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 시간" msgid "1 week" msgstr "1주일" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "당신의 지갑 파일의 복사본에서 만든" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "제안 된 요금이 자동으로이 필드에 추가됩니다. 당신은 그것을 무시할 수 있습니다. 제안되는 비용은 트랜잭션의 크기에 따라 증가한다." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "추가 요금" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "상세주소" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "결제 금액" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "금액 수신 :" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "금액이 전송 :" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "양을 확인할 수 있습니다." @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "외형" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "뒤로 " @@ -815,9 +815,9 @@ msgstr "뒤로 " #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "잔고" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "기본 유닛" @@ -864,7 +864,7 @@ msgstr "지갑의 기본 단위." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "방송" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "트랜잭션 방송..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "취소" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "파일을 읽을 수 없습니다" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "패스워드 변경" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "부모를 위해 어린이가 지불한다." msgid "Child pays for parent" msgstr "어린이가 부모를 위해 지불한다." -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "지갑 키를 암호화하기위한 암호를 선택하십시오." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "웹 브라우저를 여는 기능에 사용되는 온라인 탐색기 msgid "Choose..." msgstr "선택 ..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr " 초기화" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "콘&솔" msgid "Con&tacts" msgstr "거&래" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "시드 확인" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "가져 오기 연락처 ... %s" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "URI를 복사" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "복사 및 닫기" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "클립보드로 복사" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "다크/라이트" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "날ㅉ" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "지우다" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "청구서 삭제" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "설명" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "트랜잭션 (필수되지 않음)의 설명." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "상세" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "전자적인 방법으로 저장히지 마세요." @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "당신은 계속 하시겠습니까?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "수동으로 수수료 지정" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "암호화" msgid "Encrypt wallet file" msgstr "지갑 파일을 암호화합니다." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "암호화 / 암호 해독 메시지" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "암호를 입력 하십시오" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "비밀번호를 입력하세요." @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "'지불' 분야에서 출력의 목록을 입력 합니다." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "당신의 암호를 입력하거나 다른 파일을 고르세요." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "계속 진행 하려면 비밀 번호를 입력" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "에러" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "수출 역사" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "맞춤 문장으로 이 시드를 연장하세요." #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "암호를 업데이트하지 못했습니다" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "수수료" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "수수료" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "지시" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "신용화폐" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "파일" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "이 분야를 따라가세요." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "형식: 주소, 금액" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "높이" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "여기에 마스터 공개 키가입니다." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "주인" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "가져오기" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "개인 키를 가져옵니다" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "정보" @@ -3224,8 +3224,8 @@ msgid_plural "Inputs ({num_inputs})" msgstr[0] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "수량 입력" @@ -3237,7 +3237,7 @@ msgstr "" msgid "Input raw transaction" msgstr "입력 원시 트랜잭션" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "입력" @@ -3259,8 +3259,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "잔고 부족" @@ -3272,25 +3272,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "잘못된 주소" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "잘못된 금액" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3323,9 +3323,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3334,7 +3334,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3346,7 +3346,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3366,7 +3366,7 @@ msgstr "구매서" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3479,7 +3479,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3519,7 +3519,7 @@ msgstr "로드 트랜잭션" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3572,12 +3572,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3593,16 +3593,16 @@ msgstr "API 키" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "최고점" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3639,7 +3639,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "수수료" @@ -3651,7 +3651,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3675,15 +3675,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3693,12 +3693,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "이름 " -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3711,11 +3711,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "네트워크" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3728,7 +3728,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "한번도 한 적 없습니다." @@ -3738,7 +3738,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "당신의 씨앗을 공개하지 마십시오. 웹 사이트에 입력하지 마십시오." @@ -3747,7 +3747,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "결코 웹사이트에 그것을 입력 합니다." @@ -3756,8 +3756,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "새 연락처" @@ -3765,19 +3765,19 @@ msgstr "새 연락처" msgid "New Password:" msgstr "새 암호:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "새 연락처" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3786,21 +3786,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "다음 것" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3808,7 +3808,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3824,15 +3824,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "지갑" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3840,7 +3840,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3869,7 +3869,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "어떤 메시지를하거나 양" @@ -3878,16 +3878,16 @@ msgid "No more addresses in your wallet." msgstr "당신의 지갑에서 더 이상 주소." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "없음 출력 없음" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3899,25 +3899,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3925,7 +3925,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3947,8 +3947,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "연결되지 않음" @@ -4005,18 +4005,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "제로의 수는 소수점 표시됩니다. 예를 들어,이 2로 설정되어있는 경우, \"1\" \"1.00\"으로 표시됩니다" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "확인" @@ -4048,11 +4048,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "오프라인" @@ -4087,13 +4087,13 @@ msgstr "" msgid "One output per line." msgstr "선 당 1 개의 출력 합니다." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "온라인 블록 탐색기" @@ -4121,11 +4121,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4145,12 +4145,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "OpenAlias 기록, 동전 하 고 결제 요청을 서명 하는 데 사용." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4163,12 +4163,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4177,8 +4177,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4192,7 +4192,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "출력" @@ -4245,21 +4245,21 @@ msgstr "" msgid "Password" msgstr "패스워드" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "비밀번호 강도 " #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4274,7 +4274,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "비밀번호가 성공적으로 업데이트되었습니다" @@ -4282,7 +4282,7 @@ msgstr "비밀번호가 성공적으로 업데이트되었습니다" msgid "Password:" msgstr "암호:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4308,9 +4308,9 @@ msgid "Pay Now" msgstr "결제하기" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "에 지불" @@ -4322,21 +4322,21 @@ msgstr "& 많은 지불" msgid "Payment Request" msgstr "결제 요청이 만료되었습니다" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "결제 요청이 만료되었습니다" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "결제 보냈습니다." @@ -4365,7 +4365,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4397,7 +4397,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4431,19 +4431,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4464,7 +4464,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4477,7 +4477,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "당신의 보증인 함께 그것을 공유 하시기 바랍니다." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4501,8 +4501,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "잠시 기다려 주십시오." @@ -4520,7 +4520,7 @@ msgstr "잠시 기다려 주십시오…" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4553,7 +4553,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4561,7 +4561,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4590,7 +4590,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "미리보기(클릭 후 잠시만 기다려주세요)" @@ -4598,14 +4598,14 @@ msgstr "미리보기(클릭 후 잠시만 기다려주세요)" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "개인 전용 키" @@ -4622,7 +4622,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "진행" @@ -4667,7 +4667,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "공용 키" @@ -4679,10 +4679,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4691,9 +4691,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR 코드" @@ -4721,7 +4721,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4767,8 +4767,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "받는 수량" @@ -4781,13 +4781,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4795,7 +4795,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "이메일 주소" @@ -4808,11 +4808,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4834,10 +4834,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "제거" @@ -4859,20 +4859,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4884,17 +4884,17 @@ msgstr "버그보고" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "요청 만료" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4910,7 +4910,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "요청 금액" @@ -4918,8 +4918,8 @@ msgstr "요청 금액" msgid "Requestor" msgstr "요청자" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "요청" @@ -4952,8 +4952,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -4997,13 +4997,13 @@ msgstr "지불 요청을 서명 하는 데 사용 하는 SSL 인증서입니다. msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "저장" @@ -5011,8 +5011,8 @@ msgstr "저장" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5028,7 +5028,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5057,7 +5057,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5075,11 +5075,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5092,8 +5092,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "종자" @@ -5101,7 +5101,7 @@ msgstr "종자" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5161,7 +5161,7 @@ msgstr "서버를 자동으로 선택" msgid "Select server manually" msgstr "선택 서버를 수동으로" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5186,9 +5186,9 @@ msgid "Select your transaction file" msgstr "트랜잭션 파일을 선택합니다" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "보내기" @@ -5220,7 +5220,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5233,7 +5233,7 @@ msgstr "서버" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5254,7 +5254,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5290,46 +5290,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "설정" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5337,20 +5337,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5366,14 +5366,14 @@ msgstr "" msgid "Show QR Code" msgstr "QR 코드를 표시" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "QR 코드로 표시" @@ -5386,11 +5386,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5465,7 +5465,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "사인" @@ -5473,12 +5473,12 @@ msgstr "사인" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "로그인" @@ -5491,7 +5491,7 @@ msgid "Signature" msgstr "서명" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "서명 확인" @@ -5512,17 +5512,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "거래 서명..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5536,12 +5536,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5550,11 +5550,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5567,11 +5567,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5587,20 +5587,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5624,7 +5624,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5639,15 +5639,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "상태" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "상태" @@ -5656,10 +5656,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "성ㄱ" @@ -5687,13 +5687,13 @@ msgstr "개인 키를 스윕" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "동기화" @@ -5705,27 +5705,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5755,18 +5755,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5787,10 +5787,10 @@ msgstr "유료 량은 송신자가 자유롭게 결정할 수있다. 그러나, msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "지갑에 충분한 자금이없는 경우 금액은 빨간색으로 표시됩니다." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5841,7 +5841,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5850,11 +5850,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5906,20 +5906,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5931,7 +5931,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5947,7 +5947,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6022,7 +6022,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6048,11 +6048,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6085,17 +6085,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "이것은 관찰 전용 지갑입니다" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6104,7 +6104,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6113,12 +6113,12 @@ msgid "This may result in higher transactions fees." msgstr "이 더 높은 거래 수수료 발생할 수 있습니다." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "이 지불 요청 서명 될 것 이다." @@ -6126,14 +6126,14 @@ msgstr "이 지불 요청 서명 될 것 이다." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "이 씨는 컴퓨터 실패의 경우에 당신의 지갑을 복구 할 수 있습니다." @@ -6149,7 +6149,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6159,7 +6159,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6172,7 +6172,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "이 거래는 저장되지 않습니다. 어쨌든 닫습니다?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6180,16 +6180,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "이 지갑은 씨앗이 없습니다" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6228,30 +6228,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "당신이 제대로 씨앗을 저장했는지 확인하려면 여기를 다시 입력하십시오." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6271,9 +6271,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6297,7 +6297,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6305,25 +6305,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "거래" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6332,20 +6332,20 @@ msgid "Transaction ID" msgstr "거래 ID" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "거래 ID:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6361,7 +6361,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6374,8 +6374,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "지갑과 관련이없는 거래" @@ -6388,9 +6388,9 @@ msgid "Transaction:" msgstr "거래" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "거래 " @@ -6411,11 +6411,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6424,8 +6424,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6449,7 +6449,7 @@ msgstr "CSV를 만들 수 없습니다" msgid "Unable to export history" msgstr "역사를 내보낼 수 없습니다" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6505,8 +6505,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6532,16 +6532,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "불명" @@ -6549,7 +6549,7 @@ msgstr "불명" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6557,7 +6557,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6569,7 +6569,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6589,7 +6589,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6621,12 +6621,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6635,18 +6635,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "변경 주소 사용" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "여러 개의 변경 주소를 사용 하 여" @@ -6662,24 +6662,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Setconfig를 사용 하 여 ssl_chain와 ssl_privkey를 설정." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6699,7 +6699,7 @@ msgstr "변화 어드레스를 사용하는 것은 더 어렵게 다른 사람 msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6712,7 +6712,7 @@ msgstr "" msgid "Verify" msgstr "검증" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6764,11 +6764,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "블록 탐색기에서보기" @@ -6784,7 +6784,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6793,7 +6793,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "경고" @@ -6821,22 +6821,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6844,11 +6844,11 @@ msgstr "" msgid "Wallet backup created" msgstr "만든 지갑 백업" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6864,15 +6864,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6880,7 +6880,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6888,7 +6888,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6919,11 +6919,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6972,32 +6972,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "잘못 된 서명" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7007,7 +7007,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7024,11 +7024,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7048,7 +7048,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7056,11 +7056,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7072,11 +7072,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7103,7 +7103,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7123,7 +7123,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7131,7 +7131,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7152,13 +7152,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7179,7 +7179,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7195,7 +7195,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7208,7 +7208,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7217,12 +7217,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "당신의 씨앗이 중요합니다!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7235,7 +7235,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "고유 지갑 암호는" @@ -7244,12 +7244,12 @@ msgid "Your wallet history has been successfully exported." msgstr "지갑의 역사는 성공적으로 내보냈습니다." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7262,7 +7262,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "소수점 제로" @@ -7323,7 +7323,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7332,8 +7332,8 @@ msgid "are frozen" msgstr "냉동" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7341,8 +7341,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7354,7 +7354,7 @@ msgstr "연대 보증인" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7370,7 +7370,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7395,7 +7395,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "잠시 기다려 주십시오." @@ -7430,15 +7430,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "알 수 없음" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7459,7 +7459,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "만보고" @@ -7467,7 +7467,7 @@ msgstr "만보고" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7530,15 +7530,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7546,7 +7546,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7554,11 +7554,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7570,23 +7570,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/ky_KG/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/ky_KG/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/ky_KG/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/ky_KG/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/ky_KG/electron-cash.po b/contrib/electrum-locale/locale/ky_KG/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/ky_KG/electron-cash.po rename to contrib/electrum-locale/locale/ky_KG/vilight.po index 15b05f3a7..705a89418 100644 --- a/contrib/electrum-locale/locale/ky_KG/electron-cash.po +++ b/contrib/electrum-locale/locale/ky_KG/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 саат" msgid "1 week" msgstr "1 жума" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Дарек" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Сумма" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Артка" @@ -815,9 +815,9 @@ msgstr "Артка" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Баланс" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "" @@ -864,7 +864,7 @@ msgstr "" msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "" @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Жокко чыгаруу" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "" msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Тазалоо" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Байланыштар" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "Көчүрүп жабуу" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Дата" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Өчүрүү" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Баяндамасы" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "" #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "" msgid "Encrypt wallet file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Пароль киргизиңиз" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Ката" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Импорттоо" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Кириштер" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Дареги туура эмес" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "Транзакцияны жүктөө" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Тармак" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "" @@ -3766,19 +3766,19 @@ msgstr "" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Кийинки" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3809,7 +3809,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Капчык жок" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3926,7 +3926,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "Жарайт" @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Чыгыштар" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "Сырсөзү" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "" @@ -4285,7 +4285,7 @@ msgstr "" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "" @@ -4325,21 +4325,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "" @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4523,7 +4523,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4564,7 +4564,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4601,14 +4601,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Жеке ачкыч" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Улантуу?" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "" @@ -4682,10 +4682,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR-код" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Өчүрүү" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "Каталарды маалымдоо" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4913,7 +4913,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "" @@ -4921,8 +4921,8 @@ msgstr "" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Сактоо" @@ -5014,8 +5014,8 @@ msgstr "Сактоо" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5104,7 +5104,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "Серверди автоматтуу түрдө тандоо" msgid "Select server manually" msgstr "Серверди колго тандоо" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "Транзакция файлыңызды тандаңыз" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Жөнөтүү" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "Сервери" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Ырастоолор" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "" @@ -5476,12 +5476,12 @@ msgstr "" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Ийгиликтүү" @@ -5690,13 +5690,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Синхрондоштурууда..." @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "" msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6129,14 +6129,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "" @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Транзакция" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "Транзакция:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Транзакциялар" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6552,7 +6552,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6702,7 +6702,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "Текшерүү" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "ЭСКЕРТҮҮ" @@ -6826,22 +6826,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6924,11 +6924,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6977,32 +6977,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7012,7 +7012,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7029,11 +7029,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7053,7 +7053,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7061,11 +7061,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7077,11 +7077,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7108,7 +7108,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7128,7 +7128,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7136,7 +7136,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7157,13 +7157,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7184,7 +7184,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7200,7 +7200,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7213,7 +7213,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7222,12 +7222,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7240,7 +7240,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7249,12 +7249,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7267,7 +7267,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7328,7 +7328,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7337,8 +7337,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7346,8 +7346,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7359,7 +7359,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7375,7 +7375,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7400,7 +7400,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "күтө туруңуз..." @@ -7435,15 +7435,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7464,7 +7464,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "" @@ -7472,7 +7472,7 @@ msgstr "" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7537,15 +7537,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7553,7 +7553,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7561,11 +7561,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7577,23 +7577,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/lv_LV/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/lv_LV/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/lv_LV/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/lv_LV/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/lv_LV/electron-cash.po b/contrib/electrum-locale/locale/lv_LV/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/lv_LV/electron-cash.po rename to contrib/electrum-locale/locale/lv_LV/vilight.po index 05a5d9a05..26b3a4b52 100644 --- a/contrib/electrum-locale/locale/lv_LV/electron-cash.po +++ b/contrib/electrum-locale/locale/lv_LV/vilight.po @@ -24,7 +24,7 @@ msgstr " (valūtas kurss nav pieejams)" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d minūtes" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Adreses" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 stunda" msgid "1 week" msgstr "1 nedēļa" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Maciņa kopija tika izveidota" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Ieteicamā transakcijas komisijas maksa tiek automātiski pievienota šajā lauciņā, jūs varat to pārrakstīt. Ieteicamā komisijas maksa palielinās līdz ar transakcijas izmēru." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "Pievienot papildparakstītāju" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Papildu komisijas maksas" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adrese" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "Adrese nav maciņā." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Viss" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Summa" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Saņemtā summa:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Nosūtītā summa:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Summa nosūtīšanai" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "Nenosaukts {}" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Izskats" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Atpakaļ" @@ -815,9 +815,9 @@ msgstr "Atpakaļ" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Bilance" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Pamata vienība" @@ -864,7 +864,7 @@ msgstr "Maciņa pamata vienība." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Apraide" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Apraida transakciju..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Atcelt" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "Nevar pievienot šo līdzparakstītāju:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "Nevar nolasīt failu" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Atlikums" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "Mainīt paroli" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "Bērns maksā par vecākiem" msgid "Child pays for parent" msgstr "Bērns maksā par vecākiem" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "Izvēlieties paroli, lai šifrētu maciņa atslēgas." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Izvēlieties blokķēdes pārlūku, kuru atvērt tīmekļa pārlūkprogr msgid "Choose..." msgstr "Izvēlēties..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Notīrīt" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "Kon&sole" msgid "Con&tacts" msgstr "Kon&takti" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "Apstipriniet sēklu" msgid "Confirm Seed Extension" msgstr "Apstiprināt sēklas pagarinājumu" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "Savienotais mezgls" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Kontakti" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Kopēt vietrādi" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "Kopēt un aizvērt" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Kopēt uz starpliktuvi" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "Izveidot" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "Izveidot jaunu sēklu" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "Tumšs/gaišs" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Datums" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Dzēst" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "Dzēst rēķinu?" msgid "Delete wallet file?" msgstr "Dzēst maciņa failu?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Apraksts" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Transakcijas apraksts (nav obligāts)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Sīkāka informācija" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Nesaglabājiet to elektroniski." @@ -2025,24 +2025,24 @@ msgstr "Vai vēlaties nosūtīt šo ziņojumu?" msgid "Do you wish to continue?" msgstr "Vai vēlaties turpināt?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Rediģēt komisijas maksu manuāli" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Šifrēt" msgid "Encrypt wallet file" msgstr "Šifrēt maciņa failu" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Šifrēt/atšifrēt ziņojumu" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Ievadiet paroles frāzi" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Ievadiet paroli" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Ievadiet izvadu sarakstu 'Maksāt uz' laukā." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "Ievadiet līdzparakstītāja atslēgu" msgid "Enter cosigner seed" msgstr "Ievadiet līdzparakstītāja sēklu" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "Ievadiet paroli vai izvēlieties citu failu." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Ievadiet paroli, lai turpinātu" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Kļūda" @@ -2530,7 +2530,7 @@ msgstr "Kļūda: dubulta galvenā publiskā atslēga" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Eksportēt vēsturi" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "Pagarināt šo sēklu ar papildu vārdiem" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Neizdevās atjaunot paroli" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Komisija" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Komisijas maksa" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Valsts nauda" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Valsts nauda" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Fails" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Sekot šim zaram" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "Formāts: adrese, summa" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "Iesaldēt" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "Finansēts" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "Ģenerēt jaunu, nejaušu maciņu" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Augstums" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Šī ir jūsu galvenā publiskā atslēga." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Saimnieks" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "Ja nezināt, kas tas ir, atstājiet šo lauku nemainītu." @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "Ja maciņā ir līdzekļi, pārliecinieties, vai esat saglabājuši tā sēklu." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importēt" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "Importēt Bitcoin adreses" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Importēt privātās atslēgas" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Informācija" @@ -3226,8 +3226,8 @@ msgstr[1] "" msgstr[2] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Ievada summa" @@ -3239,7 +3239,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Ievadiet jēlu transakciju" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Ievadi" @@ -3261,8 +3261,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Nav pietiekoši daudz līdzekļu" @@ -3274,25 +3274,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Nederīga adrese" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Nederīga summa" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3325,9 +3325,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3336,7 +3336,7 @@ msgid "Invalid amount" msgstr "Nederīga summa" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3348,7 +3348,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3368,7 +3368,7 @@ msgstr "Rēķini" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3481,7 +3481,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3521,7 +3521,7 @@ msgstr "Ielādēt transakciju" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3574,12 +3574,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3595,16 +3595,16 @@ msgstr "Galvenās publiskās atslēgas" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Maks." #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Ir pārsniegta maksimālā komisijas maksa" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3641,7 +3641,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Komisijas maksa" @@ -3653,7 +3653,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3677,15 +3677,15 @@ msgstr "Daudzparakstu maciņš" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3695,12 +3695,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Nosaukums" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3713,11 +3713,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Tīkls" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3730,7 +3730,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Nekad" @@ -3740,7 +3740,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Nekad neizpaudiet sēklu." @@ -3749,7 +3749,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Nekad neievadiet to tīmekļa vietnēs." @@ -3758,8 +3758,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Jauns kontakts" @@ -3767,19 +3767,19 @@ msgstr "Jauns kontakts" msgid "New Password:" msgstr "Jaunā parole:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Jauns kontakts" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "Saņemta jauna transakcija: {}" @@ -3788,21 +3788,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Nākamais" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3810,7 +3810,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3826,15 +3826,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Nav maciņa" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3842,7 +3842,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3871,7 +3871,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Nav ziņojuma vai summas" @@ -3880,16 +3880,16 @@ msgid "No more addresses in your wallet." msgstr "Maciņā vairs nav adrešu." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Nav izvadu" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3901,25 +3901,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Nekas" @@ -3927,7 +3927,7 @@ msgstr "Nekas" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3949,8 +3949,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Nav savienots" @@ -4007,18 +4007,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Nulles pēc decimālā atdalītāja. Piemēram, ja šis iestatījums ir 2, \"1.\" tiks attēlots kā \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "Labi" @@ -4052,11 +4052,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Nesaistē" @@ -4091,13 +4091,13 @@ msgstr "" msgid "One output per line." msgstr "Viens izvads katrā līnijā." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Tiešsaites blokķēdes pārlūks" @@ -4125,11 +4125,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4149,12 +4149,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "OpenAlias ieraksts, izmantots, lai saņemtu monētas un, lai parakstītu maksājumu pieprasījumus." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4167,12 +4167,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Opcijas" @@ -4181,8 +4181,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4198,7 +4198,7 @@ msgstr "Izvada summa" msgid "Output point" msgstr "Izvada punkts" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Izvadi" @@ -4251,21 +4251,21 @@ msgstr "" msgid "Password" msgstr "Parole" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Paroles stiprums" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Parole ir atslēgta, šis maciņš nav aizsargāts" @@ -4280,7 +4280,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Parole veiksmīgi atjaunināta" @@ -4288,7 +4288,7 @@ msgstr "Parole veiksmīgi atjaunināta" msgid "Password:" msgstr "Parole:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4314,9 +4314,9 @@ msgid "Pay Now" msgstr "Maksāt tagad" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Maksāt uz" @@ -4328,21 +4328,21 @@ msgstr "Maksāt vairākiem" msgid "Payment Request" msgstr "Maksājuma pieprasījums" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Maksājuma pieprasījums ir izbeidzies" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Maksājums nosūtīts." @@ -4371,7 +4371,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "Lūdzu, īsi aprakstiet darbības kuras izraisīja kļūdu (nav obligāti):" @@ -4403,7 +4403,7 @@ msgstr "Lūdzu, ievadiet līdzparakstītāja publisko atslēgu (xpub)." msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4437,19 +4437,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4470,7 +4470,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4483,7 +4483,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Lūdzu, dalieties ar šo ar jūsu papildparakstītājiem." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4507,8 +4507,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Lūdzu, uzgaidiet" @@ -4526,7 +4526,7 @@ msgstr "Lūdzu, uzgaidiet..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4559,7 +4559,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Ports" @@ -4567,7 +4567,7 @@ msgstr "Ports" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4596,7 +4596,7 @@ msgstr "Nospiediet 'Nākamais', lai atvērtu šo maciņu." msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Priekšskatīt" @@ -4604,14 +4604,14 @@ msgstr "Priekšskatīt" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "Privātā atslēga" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Privātā atslēga" @@ -4628,7 +4628,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Turpināt?" @@ -4673,7 +4673,7 @@ msgid "Proxy user" msgstr "Starpniekservera lietotājs" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Publiskā atslēga" @@ -4685,10 +4685,10 @@ msgstr "Publiskās atslēgas" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4697,9 +4697,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR kods" @@ -4727,7 +4727,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "Jautājums" @@ -4773,8 +4773,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Saņemt" @@ -4787,13 +4787,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "Saņemšana" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4801,7 +4801,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Saņemšanas adrese" @@ -4814,11 +4814,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Izpirkšanas skripts" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4840,10 +4840,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Izņemt" @@ -4865,20 +4865,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4890,17 +4890,17 @@ msgstr "Ziņot kļūdas" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Pieprasījums beidzas" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "Pieprasīt maksājumu" @@ -4916,7 +4916,7 @@ msgstr "Pieprasījums nosūtīts." msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Pieprasītā summa" @@ -4924,8 +4924,8 @@ msgstr "Pieprasītā summa" msgid "Requestor" msgstr "Pieprasītājs" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Pieprasījumi" @@ -4958,8 +4958,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5003,13 +5003,13 @@ msgstr "SSL sertifikāts tiek izmantots, lai parakstītu maksājumu pieprasījum msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Saglabāt" @@ -5017,8 +5017,8 @@ msgstr "Saglabāt" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5034,7 +5034,7 @@ msgstr "Saglabāt rēķinu failā" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5063,7 +5063,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "Skripta tips" @@ -5081,11 +5081,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5098,8 +5098,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Sēkla" @@ -5107,7 +5107,7 @@ msgstr "Sēkla" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5167,7 +5167,7 @@ msgstr "Izvēlēties serveri automātiski" msgid "Select server manually" msgstr "Izvēlēties serveri manuāli" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5192,9 +5192,9 @@ msgid "Select your transaction file" msgstr "Izvēlieties transakcijas failu" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Sūtīt" @@ -5226,7 +5226,7 @@ msgstr "" msgid "Send via e-mail" msgstr "Sūtīt pa e-pastu" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5239,7 +5239,7 @@ msgstr "Serveris" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5260,7 +5260,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "Serveris atpaliek ({} blokus)" @@ -5296,46 +5296,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Iestatījumi" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Rādīt" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5343,20 +5343,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "Rādīt valsts naudas bilanci katrai adresei" @@ -5372,14 +5372,14 @@ msgstr "" msgid "Show QR Code" msgstr "Rādīt QR kodu" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Rādīt kā QR kodu" @@ -5392,11 +5392,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Rādīt vēsturiskās cenas" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5471,7 +5471,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Parakstīt" @@ -5479,12 +5479,12 @@ msgstr "Parakstīt" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Parakstīt/pārbaudīt ziņojumu" @@ -5497,7 +5497,7 @@ msgid "Signature" msgstr "Paraksts" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Paraksts pārbaudīts" @@ -5518,17 +5518,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Paraksta transakciju..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Izmērs:" @@ -5542,12 +5542,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "Atvainojiet!" @@ -5556,11 +5556,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Avots" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5573,11 +5573,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "Tērēt" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5593,20 +5593,20 @@ msgstr "" msgid "Spend from" msgstr "Tērēt no" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Tērēt tikai apstiprinātās monētas" @@ -5630,7 +5630,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5645,15 +5645,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Statuss" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Statuss:" @@ -5662,10 +5662,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Veiksme" @@ -5693,13 +5693,13 @@ msgstr "Izslaucīt privātās atslēgas" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Sinhronizējas..." @@ -5711,27 +5711,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "Teksts iekopēts starpliktuvē" @@ -5761,18 +5761,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5793,10 +5793,10 @@ msgstr "Komisijas maksas lielumu var brīvi izvēlēties pats sūtītājs. Tomē msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Ja maciņā nav pietiekami daudz līdzekļu, summa tiks rādīta sarkanā krāsā." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5848,7 +5848,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5857,11 +5857,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5913,20 +5913,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5938,7 +5938,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5954,7 +5954,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6030,7 +6030,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6056,11 +6056,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Šī blokķēde tiek izmantota, lai pārbaudītu transakcijas, kuras nosūta transakciju serveris." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6093,17 +6093,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Šis maciņš ir tikai skatīšanai" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "Šis maciņš ir tikai skatīšanai." @@ -6112,7 +6112,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Šis ir lokālās blokķēdes kopijas augstums." @@ -6121,12 +6121,12 @@ msgid "This may result in higher transactions fees." msgstr "Šī opcija var palielināt transakciju komisijas maksu." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Tiks parakstīts šis maksājuma pieprasījums." @@ -6134,14 +6134,14 @@ msgstr "Tiks parakstīts šis maksājuma pieprasījums." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Ar šo sēklu ir iespējams atjaunot maciņu, datora bojājuma gadījumā." @@ -6157,7 +6157,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6167,7 +6167,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6180,7 +6180,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Šī transakcija nav saglabāta. Aizvērt tik un tā?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6188,16 +6188,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Maciņam nav sēklas" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6236,30 +6236,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "Lūdzu, ievadiet savu galveno privāto atslēgu (xprv/yprv/zprv), lai izveidotu maciņu tērēšanai." #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "Lūdzu, ievadiet savu galveno publisko atslēgu (xpub/ypub/zpub), lai izveidotu maciņu tikai skatīšanai." #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "Lai palīdzētu mums diagnosticēt un salabot šo kļūdu, jūs varat nosūtīt mums ziņojumu kurš satur noderīgu atkļūdošanas informāciju:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Lai pārliecinātos, ka sēkla ir pareizi saglabāta, lūdzu, ierakstiet to atkārtoti." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6279,9 +6279,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6305,7 +6305,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6313,25 +6313,25 @@ msgstr "" msgid "Total size" msgstr "Kopējais izmērs" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transakcija" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6340,20 +6340,20 @@ msgid "Transaction ID" msgstr "Transakcijas ID" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "Transakcijas ID:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6369,7 +6369,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6382,8 +6382,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transakcija nesaistīta ar jūsu maciņu" @@ -6396,9 +6396,9 @@ msgid "Transaction:" msgstr "Transakcija:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transakcijas" @@ -6419,11 +6419,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6432,8 +6432,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6457,7 +6457,7 @@ msgstr "Neizdevās izveidot csv" msgid "Unable to export history" msgstr "Vēstures eksportēšana neizdevās" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6513,8 +6513,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "Atsaldēt" @@ -6540,16 +6540,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Nezināms" @@ -6557,7 +6557,7 @@ msgstr "Nezināms" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "Neparakstīts" @@ -6565,7 +6565,7 @@ msgstr "Neparakstīts" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6577,7 +6577,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "Neizmantots" @@ -6597,7 +6597,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6629,12 +6629,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Izmantot Tor starpniekserveri" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6643,18 +6643,18 @@ msgid "Use a hardware device" msgstr "Izmantot aparatūras ierīci" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Izmantot kā serveri" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Izmantot atlikuma adreses" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Izmantot vairākas atlikuma adreses" @@ -6670,24 +6670,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Izmantojiet setconfig, lai iestatītu ssl_chain un ssl_privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Izmantojiet šo dialoglodziņu, lai pievienotu paroli savam maciņam." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Izmantojiet šo dialoglodziņu, lai mainītu savu paroli." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "Izmantots" @@ -6707,7 +6707,7 @@ msgstr "Izmantojot atlikuma adreses, citiem cilvēkiem ir grūtāk izsekot jūsu msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6720,7 +6720,7 @@ msgstr "" msgid "Verify" msgstr "Pārbaudīt" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6776,11 +6776,11 @@ msgstr "Skatīt rēķinu" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Skatīt blokķēdes pārlūkā" @@ -6796,7 +6796,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6805,7 +6805,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "BRĪDINĀJUMS" @@ -6833,22 +6833,22 @@ msgstr "Maciņš" msgid "Wallet Information" msgstr "Maciņa informācija" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6856,11 +6856,11 @@ msgstr "" msgid "Wallet backup created" msgstr "Izveidota maciņa kopija" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6876,15 +6876,15 @@ msgstr "" msgid "Wallet name" msgstr "Maciņa nosaukums" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6892,7 +6892,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6900,7 +6900,7 @@ msgstr "" msgid "Wallet type" msgstr "Maciņa tips" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "Maciņi" @@ -6933,11 +6933,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "Gadījās kļūda, savienojoties ar ierīci:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6986,32 +6986,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "Nepareizs atslēgas tips" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Nepareizs paraksts" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7021,7 +7021,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Jūs sekojat zaram" @@ -7038,11 +7038,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7062,7 +7062,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7070,11 +7070,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7086,11 +7086,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7117,7 +7117,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7137,7 +7137,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7145,7 +7145,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7166,13 +7166,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "Jūsu konti tika pārvietoti uz" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Jūsu Bitcoin ir aizsargāti ar paroli. Tomēr, jūsu maciņš nav šifrēts." @@ -7193,7 +7193,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7209,7 +7209,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7222,7 +7222,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "Jūsu sēklas pagarinājums ir" @@ -7231,12 +7231,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "Sēklas pagarinājums ir jāsaglabā kopā ar jūsu sēklu." #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Sēkla ir svarīga!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Jūsu serveris ir uz zara" @@ -7249,7 +7249,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Maciņa atjaunošanas sēkla ir:" @@ -7258,12 +7258,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Maciņa vēsture ir veiksmīgi eksportēta." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Jūsu maciņš nav aizsargāts." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Jūsu maciņš ir aizsargāts ar paroli un šifrēts." @@ -7276,7 +7276,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Nulles pēc decimālā atdalītāja" @@ -7337,7 +7337,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7346,8 +7346,8 @@ msgid "are frozen" msgstr "ir iesaldēti" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "bloki" @@ -7355,8 +7355,8 @@ msgstr "bloki" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7368,7 +7368,7 @@ msgstr "papildparakstītājs" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7384,7 +7384,7 @@ msgstr "" msgid "initialized" msgstr "inicializēts" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7409,7 +7409,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "lūdzu, uzgaidiet..." @@ -7444,15 +7444,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "nezināms" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7473,7 +7473,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "tikai skatīšanai" @@ -7481,7 +7481,7 @@ msgstr "tikai skatīšanai" msgid "wiped" msgstr "izslaucīts" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7548,15 +7548,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7564,7 +7564,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7572,11 +7572,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "Saņemtas {} jaunas transakcijas. Kopējā saņemtā summa jaunajās transakcijās {}" @@ -7588,23 +7588,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/nb_NO/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/nb_NO/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/nb_NO/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/nb_NO/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/nb_NO/electron-cash.po b/contrib/electrum-locale/locale/nb_NO/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/nb_NO/electron-cash.po rename to contrib/electrum-locale/locale/nb_NO/vilight.po index 7c2f3a9d1..4e6f9b77a 100644 --- a/contrib/electrum-locale/locale/nb_NO/electron-cash.po +++ b/contrib/electrum-locale/locale/nb_NO/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 time" msgid "1 week" msgstr "1 uke" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "En kopi av lommebokfilen ble lagret i" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adresse" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Beløp" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Beløp mottatt:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Beløp sent:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Tilbake" @@ -815,9 +815,9 @@ msgstr "Tilbake" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Saldo" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Baseenhet" @@ -864,7 +864,7 @@ msgstr "Din lommeboks baseenhet." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Kringkast" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "" @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Avbryt" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "Endre passord" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Velg hvilken blokkutforsker du vil bruke for funksjoner som åpner en ne msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Fjern" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Kontakter" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Kopiere URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Kopier til utklippstavlen" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Dato" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Slett" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Beskrivelse" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Beskrivelse av transaksjonen (ikke påkrevd)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detaljer" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Ønsker du å fortsette?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Kryptere" msgid "Encrypt wallet file" msgstr "Krypter filen til din lommebok" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Kryptere/dekryptere melding" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Skriv passordet ditt" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Oppgi passord" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Feil" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Eksportere historie" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Kunne ikke oppdatere passord" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Avgift" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Gebyrer" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Fiat penger" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Fil" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Følg denne grenen" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "Format: addresse, mengde" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Høyde" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Vert" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importer" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Importer privatnøkler" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Navn" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Nettverk" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Aldri" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Ny kontakt" @@ -3766,19 +3766,19 @@ msgstr "Ny kontakt" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Ny kontakt" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Neste" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3809,7 +3809,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Ingen Lommebok" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Ingen" @@ -3926,7 +3926,7 @@ msgstr "Ingen" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Ikke tilkoblet" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Alternativer" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "Passord" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "" @@ -4285,7 +4285,7 @@ msgstr "" msgid "Password:" msgstr "Passord:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "Betale Nå" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Betale til" @@ -4325,21 +4325,21 @@ msgstr "Betal til mange" msgid "Payment Request" msgstr "Betalingsforespørsel" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Betaling sent." @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Vennligst vent" @@ -4523,7 +4523,7 @@ msgstr "Vennligst vent..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4564,7 +4564,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "Trykk på 'neste' for å åpne denne lommeboken." msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Forhåndsvisning" @@ -4601,14 +4601,14 @@ msgstr "Forhåndsvisning" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Fortsett?" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "Mellomtjener-bruker" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "" @@ -4682,10 +4682,10 @@ msgstr "Offentlige nøkler" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR kode" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Løs inn skript" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Fjern" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "Rapporter feil" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4913,7 +4913,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "" @@ -4921,8 +4921,8 @@ msgstr "" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Lagre" @@ -5014,8 +5014,8 @@ msgstr "Lagre" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5104,7 +5104,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "" msgid "Select server manually" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Vis som QR-kode" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "" @@ -5476,12 +5476,12 @@ msgstr "" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "" @@ -5690,13 +5690,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "" @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "" msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Beløpet vil bli vist i rødt dersom du ikke har nok midler i lommeboken." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6129,14 +6129,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "" @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Denne transaksjonen er ikke lagret. Lukke likevel?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "Total størrelse" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transaksjoner" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Ukjent" @@ -6552,7 +6552,7 @@ msgstr "Ukjent" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Bruk Tor nettverkstjener" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Bruk som server" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6702,7 +6702,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "" @@ -6826,22 +6826,22 @@ msgstr "Lommebok" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6924,11 +6924,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6977,32 +6977,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7012,7 +7012,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7029,11 +7029,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7053,7 +7053,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7061,11 +7061,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7077,11 +7077,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7108,7 +7108,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7128,7 +7128,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7136,7 +7136,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7157,13 +7157,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7184,7 +7184,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7200,7 +7200,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7213,7 +7213,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7222,12 +7222,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7240,7 +7240,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7249,12 +7249,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7267,7 +7267,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7328,7 +7328,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7337,8 +7337,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7346,8 +7346,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7359,7 +7359,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7375,7 +7375,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7400,7 +7400,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "" @@ -7435,15 +7435,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7464,7 +7464,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "" @@ -7472,7 +7472,7 @@ msgstr "" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7537,15 +7537,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7553,7 +7553,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7561,11 +7561,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7577,23 +7577,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/nl_NL/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/nl_NL/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/nl_NL/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/nl_NL/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/nl_NL/electron-cash.po b/contrib/electrum-locale/locale/nl_NL/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/nl_NL/electron-cash.po rename to contrib/electrum-locale/locale/nl_NL/vilight.po index 323c06c75..6e9aa831d 100644 --- a/contrib/electrum-locale/locale/nl_NL/electron-cash.po +++ b/contrib/electrum-locale/locale/nl_NL/vilight.po @@ -24,7 +24,7 @@ msgstr " (Geen FX tarief beschikbaar)" msgid " These settings affects the fields in the Send tab" msgstr " Deze instellingen hebben invloed op de velden in het Verzenden tabblad" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " gekopieerd naar klembord" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d minuten" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d item (s) geldig" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Adressen" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "(De uitvoer van het script)" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "+" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "..." @@ -346,7 +346,7 @@ msgstr "1 uur" msgid "1 week" msgstr "1 week" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr ":" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Een kopie van uw portemonnee-bestand is gemaakt in" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "Een deterministische portemonnee zal worden gemaakt met behulp van de meegeleverde master persoonlijke sleutel. Deze portemonnee zal vrij Vitae kunnen verzenden en ontvangen." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "Een deterministische portemonnee zal worden gemaakt met behulp van de meegeleverde master openbare sleutel. Deze portemonnee zal een alleen-kijken portemonnee worden." @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Een aanbevolen vergoeding wordt hier automatisch ingevuld. U kunt dit aanpassen. De vergoeding groeit mee met de grootte van de transactie." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "Er bestaat al een portefeuille met die naam. Voer een andere portefeuille naam in om door te gaan." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "Een portefeuille met die naam bestaat al, probeer het a.u.b. opnieuw." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "Een portefeuille met die naam bestaat al. Kan niet doorgaan." @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Bijkomende transactiekosten" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adres" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Bedrag" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Ontvangen bedrag:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Verzonden bedrag:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Te verzenden bedrag" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Verschijning" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Terug" @@ -815,9 +815,9 @@ msgstr "Terug" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Saldo" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Basiseenheid" @@ -864,7 +864,7 @@ msgstr "Basiseenheid van uw portemonnee." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Uitzenden" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Broadcasting transactie..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Annuleren" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "Kan bestand niet lezen" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "Verander wachtwoord" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "Kind betaalt voor ouder" msgid "Child pays for parent" msgstr "Kind betaalt voor ouder" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "Kies een wachtwoord om uw portemonnee mee te versleutelen." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Kies welke online blokverkenner u wilt gebruiken voor functies die een w msgid "Choose..." msgstr "Kies..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Wissen" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "" msgid "Con&tacts" msgstr "Con&tacten" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "Bevestig Seed" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Contacten" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Kopieer URL" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "Kopiëren en Sluiten" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Naar klembord kopiëren" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "Donker/licht" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Datum" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Verwijderen" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "Factuur verwijderen?" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Omschrijving" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Omschrijving van de transactie (optioneel)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "" @@ -1976,7 +1976,7 @@ msgstr "Wachtwoordzinnen uitschakelen" msgid "Disabled" msgstr "Uitgeschakeld" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "Niet koppelen" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Bewaar het niet electronisch." @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Wilt u doorgaan?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Fees handmatig aanpassen" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Versleutelen" msgid "Encrypt wallet file" msgstr "Versleutel portemonnee" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Versleutel/Ontsleutel Bericht" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Vul wachtwoord in" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Voer uw wachtwoord in" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Vul een lijst van outputs in het veld 'betalen aan'" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "Voer je wachtwoord in of kies een ander bestand." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Voer je wachtwoord in om verder te gaan" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Fout" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Geschiedenis exporteren" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "Breid deze seed uit met woorden" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Bijwerken van wachtwoord mislukt" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Transactiekosten" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Transactiekosten" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Fiat geld" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Bestand" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Volg deze branch" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "Formaat: adres, hoeveelheid" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Hoogte" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Dit is uw publieke hoofdsleutel." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importeer" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Importeer privé sleutels" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Informatie" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Voer bedrag in" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Voeg een rauwe transactie toe" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Ingangen" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Saldo niet toereikend" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Ongeldig adres" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Ongeldig bedrag" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "Facturen" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "Laad transactie in" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "&Publieke Hoofdsleutels" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Maximale fee overschreden" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Mining vergoeding" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Naam" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Netwerk" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Nooit" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Geef uw seed zin nooit weg." @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Typ het nooit in op een website." @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Nieuw contactpersooon" @@ -3766,19 +3766,19 @@ msgstr "Nieuw contactpersooon" msgid "New Password:" msgstr "Nieuw wachtwoord:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Nieuw contactpersoon" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Volgende" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3809,7 +3809,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Geen portemonnee" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Geen bericht of bedrag" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "Geen adressen meer in je portemonnee." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Geen uitgangen" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Geen" @@ -3926,7 +3926,7 @@ msgstr "Geen" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Niet verbonden" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Aantal nullen dat achter het decimaalteken wordt getoond. Bijvoorbeeld: met de waarde 2, zal \"1. BTC\" worden getoond als \"1.00 BTC\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "1 output per regel." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Online Blokverkenner" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "OpenAlias record, gebruikt om munten te ontvangen en om betalingsverzoeken te ondertekenen." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Opties" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "Opbrengst hoeveelheid" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Uitgangen" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "Wachtwoord" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Wachtwoordsterkte" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Wachtwoord inactief, deze portemonnee is niet beveiligd" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Wachtwoord succesvol bijgewerkt" @@ -4285,7 +4285,7 @@ msgstr "Wachtwoord succesvol bijgewerkt" msgid "Password:" msgstr "Wachtwoord:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "Betaal nu" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Betaal aan" @@ -4325,21 +4325,21 @@ msgstr "Betaal aan meerdere" msgid "Payment Request" msgstr "Betalingsverzoek" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Betalingsaanvraag is verlopen" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Betaling verzonden." @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "Voer a.u.b. het publieke hoofdsleutel (xpub) in van uw mede ondertekenaa msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Deel het met je mede-ondertekenaars." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Even geduld" @@ -4523,7 +4523,7 @@ msgstr "Even geduld..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Poort" @@ -4564,7 +4564,7 @@ msgstr "Poort" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "Kies 'Next' om deze portemonnee te openen." msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Voorbeeld" @@ -4601,14 +4601,14 @@ msgstr "Voorbeeld" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Privé sleutel" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Doorgaan?" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Publieke sleutel" @@ -4682,10 +4682,10 @@ msgstr "Publieke sleutels" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR-code" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Ontvangen" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Ontvangstadres" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Script inwisselen" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Verwijder" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "Problemen melden" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Verzoek verloopt" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4913,7 +4913,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Gevraagd bedrag" @@ -4921,8 +4921,8 @@ msgstr "Gevraagd bedrag" msgid "Requestor" msgstr "Aanvrager" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Aanvragen" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "SSL certificated worden gebruikt om betaalverzoeken te ondertekenen." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Opslaan" @@ -5014,8 +5014,8 @@ msgstr "Opslaan" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "Bewaar factuur in bestand" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5104,7 +5104,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "Kies automatisch een server" msgid "Select server manually" msgstr "Kies manueel een server" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "Selecteer uw transactie bestand" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Verzenden" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Instellingen" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Toon" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "Toon QR code" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Toon als QR code" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Laat tarieven historie zien" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Onderteken" @@ -5476,12 +5476,12 @@ msgstr "Onderteken" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "&Onderteken/Verifieer Bericht" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "Handtekening" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Handtekening geverifiëerd" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Transactie wordt ondertekend..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Grootte:" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Bron" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Besteed alleen bevestigde munten" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Gelukt" @@ -5690,13 +5690,13 @@ msgstr "Veeg privé sleutels leeg" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Bezig met synchroniseren..." @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "De transactiekosten kunnen door de verzender vrij gekozen worden. Echter msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "De hoeveelheid wordt weergeven in rood, indien u over onvoldoende geldmiddelen bezit." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Deze blockchain wordt gebruikt om uw transacties te verifiëren die verzonden worden door uw transactie server." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Dit is een alleen-kijken portemonnee" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Dit is de hoogte van uw lokale kopie van de blockchain." @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "Dit kan zorgen voor hogere transactiekosten." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Dit betaalverzoek wordt ondertekend." @@ -6129,14 +6129,14 @@ msgstr "Dit betaalverzoek wordt ondertekend." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Deze seed kan later je portemonnee herstellen mocht je computer problemen hebben." @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Deze transactie is niet bewaard. Toch sluiten?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Deze portemonnee heeft geen seed" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Om zeker te zijn dat u uw zaad goed hebt bewaard, gelieve het nu opnieuw in te geven." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "Totale grootte" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transactie" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "Transactie ID" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "Transactie ID:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transactie is niet gerelateerd met uw portemonnee" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "Transactie:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transacties" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "CSV bestand kon niet worden aangemaakt" msgid "Unable to export history" msgstr "Geschiedenis kon niet worden geëxporteerd" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Onbekend" @@ -6552,7 +6552,7 @@ msgstr "Onbekend" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Gebruik Tor Proxy" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Gebruik als server" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Gebruik wisselgeldadressen" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Gebruik meerdere veranderbare adressen" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Gebruik setconfig om de ssl_chain en ssl_privkey op te slaan." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Gebruik deze dialoogbox om een wachtwoord aan je portemonnee toe te voegen." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Gebruik deze dialoogbox om je wachtwoord te wijzigen." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6702,7 +6702,7 @@ msgstr "Het gebruik van wisselgeldadressen maakt het moeilijker voor derden om u msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "Verifieer" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "Factuur bekijken" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Bekijk op blokverkenner" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "WAARSCHUWING" @@ -6826,22 +6826,22 @@ msgstr "Portemonnee" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "Wallet backup aangemaakt" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6926,11 +6926,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6979,32 +6979,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Verkeerde handtekening" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7014,7 +7014,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "U volgt aftakking" @@ -7031,11 +7031,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7055,7 +7055,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7063,11 +7063,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7079,11 +7079,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7110,7 +7110,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7130,7 +7130,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7138,7 +7138,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7159,13 +7159,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "Je accounts zijn verplaatst naar" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Je bitcoins zijn beveiligd met een wachtwoord, maar je portemonnee is niet versleuteld." @@ -7186,7 +7186,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7202,7 +7202,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7215,7 +7215,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "Je seed-extensie is" @@ -7224,12 +7224,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Uw seed is belangrijk!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Uw server staat op filiaal" @@ -7242,7 +7242,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Uw portemonnee aanmaak-seed is:" @@ -7251,12 +7251,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Uw portemonnee geschiedenis is met succes geëxporteerd." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Uw portemonnee is niet beschermd." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Je portemonnee is versleuteld en beveiligd met een wachtwoord." @@ -7269,7 +7269,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Cijfers achter decimaalteken" @@ -7330,7 +7330,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7339,8 +7339,8 @@ msgid "are frozen" msgstr "zijn geblokkeerd" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "blokken" @@ -7348,8 +7348,8 @@ msgstr "blokken" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7361,7 +7361,7 @@ msgstr "mede-ondertekenaar" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7377,7 +7377,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7402,7 +7402,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "gelieve te wachten..." @@ -7437,15 +7437,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "onbekend" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7466,7 +7466,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "alleen-kijken" @@ -7474,7 +7474,7 @@ msgstr "alleen-kijken" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7539,15 +7539,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7555,7 +7555,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7563,11 +7563,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7579,23 +7579,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/pl_PL/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/pl_PL/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/pl_PL/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/pl_PL/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/pl_PL/electron-cash.po b/contrib/electrum-locale/locale/pl_PL/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/pl_PL/electron-cash.po rename to contrib/electrum-locale/locale/pl_PL/vilight.po index caf11828a..49fb52f88 100644 --- a/contrib/electrum-locale/locale/pl_PL/electron-cash.po +++ b/contrib/electrum-locale/locale/pl_PL/vilight.po @@ -24,7 +24,7 @@ msgstr " (Kursy waluty niedostępne)" msgid " These settings affects the fields in the Send tab" msgstr " Te ustawienia wpływają na pola w zakładce Wyślij" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " skopiowano do schowka" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d minut" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Adresy" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "(Tylko deterministyczne portfele są obsługiwane)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "+" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "..." @@ -346,7 +346,7 @@ msgstr "1 godzinę" msgid "1 week" msgstr "1 tydzień" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr ":" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Kopia twojego portfela została utworzona w" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "Deterministyczny Portfel zostanie utworzony przy użyciu dostarczonego głównego klucza prywatnego. Ten portfel będzie mógł swobodnie wysyłać i odbierać Vitae." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "Deterministyczny Portfel zostanie utworzony przy użyciu dostarczonego głównego klucza publicznego. Ten portfel będzie służył tylko do obserwacji." @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Sugerowana opłata za transakcję jest automatycznie dodawana do tego pola. Możesz ją zmienić. Sugerowana opłata rośnie wraz z rozmiarem transakcji." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "Portfel o tej nazwie już istnieje. Proszę podać inną nazwę, aby kontynuować." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "Portfel o tej nazwie już istnieje, spróbuj ponownie." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "Portfel o tej nazwie już istnieje. Nie można kontynuować." @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "Dodaj do kontaktów" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Dodatkowe prowizje" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adres" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "Konwerter adresów" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "Adres jest zamrożony" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "Adresu nie ma w portfelu." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "Adres do konwersji" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "Wszystkie transakcje" @@ -603,11 +603,11 @@ msgstr "Wszystkie transakcje" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Kwota" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Kwota otrzymana:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Kwota wysłana:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Kwota do wysłania" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Wygląd" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Wstecz" @@ -815,9 +815,9 @@ msgstr "Wstecz" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Saldo" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Jednostka podstawowa" @@ -864,7 +864,7 @@ msgstr "Podstawowa jednostka w portfelu." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Transmituj" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Przekazywanie transakcji..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Anuluj" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "Nie można odczytać pliku" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "Adres CashAddr" @@ -1109,7 +1109,7 @@ msgstr "Adres CashAddr" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "Format adresu CashAddr" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "Zmień hasło" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "Dziecko Płaci za Rodzica" msgid "Child pays for parent" msgstr "Dziecko płaci za rodzica" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "Wybierz hasło do zaszyfrowania kluczy w Twoim portfelu." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Wybierz których eksplorator bloków ma być użyty do funkcji które ot msgid "Choose..." msgstr "Wybierz..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Wyczyść" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "Kon&sola" msgid "Con&tacts" msgstr "Kon&takty" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "Potwierdź Ziarno" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Kontakty" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Kopiuj URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "Skopiuj i zamknij" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Skopiuj do schowka" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "Ciemny/Jasny" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Data" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Usuń" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "Usunąć rachunek?" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Opis" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Opis transakcji (opcjonalne)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Szczegóły" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Nie przechowuj go w sposób elektroniczny." @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Czy chcesz kontynuować?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Edytuj prowizje ręcznie" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Zaszyfruj" msgid "Encrypt wallet file" msgstr "Zaszyfruj plik portfela" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Szyfrowanie/deszyfrowanie wiadomości" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Wprowadź tekst szyfrujący" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Podaj hasło" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Wprowadź listę wyjść w polu 'Odbiorca'." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "Wprowadź swoje hasło lub wybierz inny plik." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Podaj hasło, aby kontynuować" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Błąd" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Eksportuj Historię" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "Rozszerz to ziarno własnymi słowami" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Niepowodzenie aktualizacji hasła" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Prowizja" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Prowizje" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Waluta" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Pieniądz fiducjarny" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Plik" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Śledź ten oddział" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "Format: adres, wartość" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Wielkość" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "To jest twój główny klucz publiczny." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importuj" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Importuj klucze prywatne" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Informacja" @@ -3227,8 +3227,8 @@ msgstr[2] "" msgstr[3] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Podaj wartość" @@ -3240,7 +3240,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Wprowadź surową transakcję" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Wejścia" @@ -3262,8 +3262,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Niewystarczająca ilość środków" @@ -3275,25 +3275,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Niepoprawny Adres" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Nieprawidłowa kwota" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3326,9 +3326,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3337,7 +3337,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3349,7 +3349,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3369,7 +3369,7 @@ msgstr "Rachunki" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3482,7 +3482,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "Starszy adres" @@ -3522,7 +3522,7 @@ msgstr "Wczytaj transakcję" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3575,12 +3575,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3596,16 +3596,16 @@ msgstr "Główne klucze publiczne" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Maks" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Maksymalna prowizja przekroczona" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3642,7 +3642,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Prowizja górnicza" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3678,15 +3678,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3696,12 +3696,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Nazwa" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3714,11 +3714,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Sieć" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3731,7 +3731,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Nigdy" @@ -3741,7 +3741,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Nigdy nie ujawniaj swojego ziarna." @@ -3750,7 +3750,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Nigdy nie wpisuj go na stronie internetowej." @@ -3759,8 +3759,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Nowy kontakt" @@ -3768,19 +3768,19 @@ msgstr "Nowy kontakt" msgid "New Password:" msgstr "Nowe hasło:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Nowy kontakt" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3789,21 +3789,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Dalej" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3811,7 +3811,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3827,15 +3827,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Brak portfela" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3843,7 +3843,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3872,7 +3872,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Brak wiadomości lub kwoty" @@ -3881,16 +3881,16 @@ msgid "No more addresses in your wallet." msgstr "Nie ma więcej adresów w portfelu." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Brak wyjść" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3902,25 +3902,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Brak" @@ -3928,7 +3928,7 @@ msgstr "Brak" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3950,8 +3950,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Niepołączony" @@ -4008,18 +4008,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Liczba zer wyświetlana po przecinku. Np. jeśli wpiszesz tutaj \"2\", to zamiast \"1,\" zobaczysz \"1,00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4054,11 +4054,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4093,13 +4093,13 @@ msgstr "" msgid "One output per line." msgstr "Jedno wyjście na linię." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Eksplorator bloków" @@ -4127,11 +4127,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4151,12 +4151,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "Rekord OpenAlias, służący do otrzymywania monet i podpisywania żądań płatności." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4169,12 +4169,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Ustawienia" @@ -4183,8 +4183,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4201,7 +4201,7 @@ msgstr "Kwota wyjściowa" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Wyjścia" @@ -4254,21 +4254,21 @@ msgstr "" msgid "Password" msgstr "Hasło" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Siła hasła" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Hasło jest wyłączone, ten portfel nie jest chroniony" @@ -4283,7 +4283,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Hasło zaktualizowane pomyślnie" @@ -4291,7 +4291,7 @@ msgstr "Hasło zaktualizowane pomyślnie" msgid "Password:" msgstr "Hasło:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4317,9 +4317,9 @@ msgid "Pay Now" msgstr "Zapłać teraz" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Odbiorca" @@ -4331,21 +4331,21 @@ msgstr "Wiele odbiorców" msgid "Payment Request" msgstr "Żądanie płatności" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Żądanie płatności wygasło" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Płatność wysłana." @@ -4374,7 +4374,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4406,7 +4406,7 @@ msgstr "Proszę podać główny klucz publiczny (xpub) lub twój współpodpis." msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4440,19 +4440,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4473,7 +4473,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4486,7 +4486,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Proszę udostępnić to swoim współpodspisom." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4510,8 +4510,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Proszę czekać" @@ -4529,7 +4529,7 @@ msgstr "Proszę czekać..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4562,7 +4562,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4570,7 +4570,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4599,7 +4599,7 @@ msgstr "Wciśnij 'Dalej' aby otworzyć ten portfel." msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Podgląd" @@ -4607,14 +4607,14 @@ msgstr "Podgląd" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Klucz prywatny" @@ -4631,7 +4631,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Kontynuować?" @@ -4676,7 +4676,7 @@ msgid "Proxy user" msgstr "Użytkownik Proxy" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Klucz publiczny" @@ -4688,10 +4688,10 @@ msgstr "Klucze publiczne" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4700,9 +4700,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "Kod QR" @@ -4730,7 +4730,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4776,8 +4776,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Odbierz" @@ -4790,13 +4790,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4804,7 +4804,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Na adres" @@ -4817,11 +4817,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Zrealizuj skrypt" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4843,10 +4843,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Usuń" @@ -4868,20 +4868,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4893,17 +4893,17 @@ msgstr "Zgłaszanie błędów" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Żądanie wygasa" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4919,7 +4919,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Żądana kwota" @@ -4927,8 +4927,8 @@ msgstr "Żądana kwota" msgid "Requestor" msgstr "Żądający" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Żądania" @@ -4961,8 +4961,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5006,13 +5006,13 @@ msgstr "Certyfikat SSL używany do podpisania żądania płatności." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Zapisz" @@ -5020,8 +5020,8 @@ msgstr "Zapisz" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5037,7 +5037,7 @@ msgstr "Zapisz rachunek do pliku" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5066,7 +5066,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5084,11 +5084,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5101,8 +5101,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Ziarno" @@ -5110,7 +5110,7 @@ msgstr "Ziarno" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5170,7 +5170,7 @@ msgstr "Wybierz serwer automatycznie" msgid "Select server manually" msgstr "Wybierz serwer ręcznie" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5195,9 +5195,9 @@ msgid "Select your transaction file" msgstr "Wybierz swój plik transakcji" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Wyślij" @@ -5229,7 +5229,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5242,7 +5242,7 @@ msgstr "Serwer" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5263,7 +5263,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5299,46 +5299,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Ustawienia" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Pokaż" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5346,20 +5346,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5375,14 +5375,14 @@ msgstr "" msgid "Show QR Code" msgstr "Pokaż Kod QR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Wyświetl jako kod QR" @@ -5395,11 +5395,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Pokaż historyczne wartości" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5474,7 +5474,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Podpisz" @@ -5482,12 +5482,12 @@ msgstr "Podpisz" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Podpisz/zweryfikuj wiadomość" @@ -5500,7 +5500,7 @@ msgid "Signature" msgstr "Podpis" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Sygnatura zweryfikowana" @@ -5521,17 +5521,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Podpisywanie transakcji..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Rozmiar:" @@ -5545,12 +5545,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5559,11 +5559,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Źródło" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5576,11 +5576,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5596,20 +5596,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Wydaj tylko potwierdzone monety" @@ -5633,7 +5633,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5648,15 +5648,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5665,10 +5665,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Powodzenie" @@ -5696,13 +5696,13 @@ msgstr "Opróżnij klucze prywatne" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Synchronizowanie..." @@ -5714,27 +5714,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5764,18 +5764,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5796,10 +5796,10 @@ msgstr "Wysokość prowizji może być dowolnie ustalona przez nadawcę. Jednak msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Kwota będzie miała kolor czerwony, jeśli przekroczy dostępne środki." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5850,7 +5850,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5859,11 +5859,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5915,20 +5915,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5940,7 +5940,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5956,7 +5956,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6031,7 +6031,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6057,11 +6057,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Ten łańcuch bloków jest wykorzystywany do weryfikowania transakcji wysłanych przez twój serwer transakcji." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6094,17 +6094,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "To jest tylko obserwowany portfel" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6113,7 +6113,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Rozmiar lokalnej kopii łańcucha bloków." @@ -6122,12 +6122,12 @@ msgid "This may result in higher transactions fees." msgstr "Może to powodować wyższe opłaty za transakcje." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "To żądanie płatności zostanie podpisane." @@ -6135,14 +6135,14 @@ msgstr "To żądanie płatności zostanie podpisane." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "To ziarno pozwoli ci na odzyskanie swojego portfela w przypadku problemów z komputerem." @@ -6158,7 +6158,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6168,7 +6168,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6181,7 +6181,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Transakcja nie została zapisana. Zamknąć mimo tego?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6189,16 +6189,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Ten portfel nie ma ziarna" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6237,30 +6237,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Aby udowodnić, że ziarno został prawidłowo zachowane, przepisz go tutaj." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6280,9 +6280,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6306,7 +6306,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6314,25 +6314,25 @@ msgstr "" msgid "Total size" msgstr "Łączny rozmiar" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transakcja" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6341,20 +6341,20 @@ msgid "Transaction ID" msgstr "ID transakcji" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID transakcji:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6370,7 +6370,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6383,8 +6383,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transakcja niezwiązana z twoim portfelem" @@ -6397,9 +6397,9 @@ msgid "Transaction:" msgstr "Transakcja:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transakcje" @@ -6420,11 +6420,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6433,8 +6433,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6458,7 +6458,7 @@ msgstr "Nie można utworzyć csv" msgid "Unable to export history" msgstr "Nie można eksportować historii" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6514,8 +6514,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6541,16 +6541,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Nieznany" @@ -6558,7 +6558,7 @@ msgstr "Nieznany" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6566,7 +6566,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6578,7 +6578,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6598,7 +6598,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6630,12 +6630,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Użyj proxy Tor" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6644,18 +6644,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Użyj jako serwer" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Używaj adresów reszty" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Używaj wielu adresów reszty" @@ -6671,24 +6671,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Użyj setconfig aby ustawić ssl_chain oraz ssl_privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Użyj tego okna aby dodać hasło do twojego portfela." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Użyj tego okna aby zmienić swoje hasło." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6708,7 +6708,7 @@ msgstr "Używanie adresów reszty utrudnia innym śledzenie twoich transakcji." msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6721,7 +6721,7 @@ msgstr "" msgid "Verify" msgstr "Weryfikuj" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6779,11 +6779,11 @@ msgstr "Zobacz rachunek" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Wyświetl w eksploratorze bloków" @@ -6799,7 +6799,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6808,7 +6808,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "OSTRZEŻENIE" @@ -6836,22 +6836,22 @@ msgstr "Portfel" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6859,11 +6859,11 @@ msgstr "" msgid "Wallet backup created" msgstr "Utworzono kopię portfela" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6879,15 +6879,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6895,7 +6895,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6903,7 +6903,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6936,11 +6936,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6989,32 +6989,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Nieprawidłowy podpis" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7024,7 +7024,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Śledzisz oddział" @@ -7041,11 +7041,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7065,7 +7065,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7073,11 +7073,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7089,11 +7089,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7120,7 +7120,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7140,7 +7140,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7148,7 +7148,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7169,13 +7169,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "Twoje konta zostały przeniesione do" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Twoje bitcoiny s zabezpieczone hasłem. Jednakże, twój portfel nie jest szyfrowany." @@ -7196,7 +7196,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7212,7 +7212,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7225,7 +7225,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "Rozszerzenie twojego ziarna to" @@ -7234,12 +7234,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Twoje ziarno jest ważne!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Twój serwer jest w oddziale" @@ -7252,7 +7252,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Twoje ziarno z portfela to:" @@ -7261,12 +7261,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Historia twojego portfela została pomyślnie eksportowana." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Twój portfel nie jest zabezpieczony." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Twój portfel jest zabezpieczony hasłem i zaszyfrowany." @@ -7279,7 +7279,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Liczba zer po przecinku" @@ -7340,7 +7340,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7349,8 +7349,8 @@ msgid "are frozen" msgstr "są zamrożone" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "bloków" @@ -7358,8 +7358,8 @@ msgstr "bloków" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7371,7 +7371,7 @@ msgstr "współpodpis" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7387,7 +7387,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7412,7 +7412,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "proszę czekać..." @@ -7447,15 +7447,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "nieznana" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7476,7 +7476,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "tylko obserwowana" @@ -7484,7 +7484,7 @@ msgstr "tylko obserwowana" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7553,15 +7553,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7569,7 +7569,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7577,11 +7577,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7593,23 +7593,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/pt_BR/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/pt_BR/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/pt_BR/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/pt_BR/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/pt_BR/electron-cash.po b/contrib/electrum-locale/locale/pt_BR/vilight.po similarity index 81% rename from contrib/electrum-locale/locale/pt_BR/electron-cash.po rename to contrib/electrum-locale/locale/pt_BR/vilight.po index d77c327b2..30bee2591 100644 --- a/contrib/electrum-locale/locale/pt_BR/electron-cash.po +++ b/contrib/electrum-locale/locale/pt_BR/vilight.po @@ -24,7 +24,7 @@ msgstr " (Taxa indicativa indisponível)" msgid " These settings affects the fields in the Send tab" msgstr " Essas configurações afetam os campos da aba Enviar" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " copiado para a área de transferência" @@ -37,7 +37,7 @@ msgstr " {} encontrado" msgid "%2d minutes" msgstr "%2d minutos" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d elemento(s) válido(s)" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Endereço" @@ -293,7 +293,7 @@ msgstr "(Versões antigas do ViLight anteriores à 3.3.6 produziram carteiras de msgid "(Only deterministic wallets are supported)" msgstr "(Somente carteiras determinísticas são suportadas)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "(Resultado do Script)" @@ -325,7 +325,7 @@ msgstr "({} de {}):" msgid "+" msgstr "+" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "..." @@ -346,7 +346,7 @@ msgstr "1 hora" msgid "1 week" msgstr "1 semana" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr ":" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Uma cópia do arquivo da sua carteira foi criado em" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "Uma carteira determinística será criada usando a chave privada mestra fornecida. Esta carteira será capaz de enviar e receber Vitae." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "Uma carteira determinística será criada usando a chave pública mestra fornecida. Esta carteira será somente watching-only." @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Uma taxa sugerida é automaticamente adicionada a esse campo. Você pode sobrescrever. A taxa sugerida aumenta com o tamanho da transação." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "Uma carteira com esse nome já existe. Por favor, insira um nome de carteira diferente para prosseguir." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "Uma carteira com esse nome já existe, tente novamente." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "Uma carteira com esse nome já existe. Não é possível prosseguir." @@ -489,12 +489,12 @@ msgstr "Adicione um teclado virtual opcional quando for digitar a senha." msgid "Add cosigner" msgstr "Adicione um cossignatário" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "Adicionar nova carteira" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "Adicionar a contatos" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "Adicionando {} de {} novos endereços à carteira..." #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Tarifas adicionais" @@ -521,23 +521,23 @@ msgstr "Além disso, você também pode estar vulnerável a ataques man-in-the-m #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Endereço" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "Conversor de endereço" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "Detalhes do Endereço" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "Endereço está travado" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "O endereço não está na carteira." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "Endereço a converter" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Tudo" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "Todas as transações" @@ -603,11 +603,11 @@ msgstr "Todas as transações" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "Todo o seu tráfego para os servidores de blockchain será enviado sem criptografia." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "Tudo pronto." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "Já expirado" @@ -619,11 +619,11 @@ msgstr "Já atualizado" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Valor" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Quantia recebida:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Quantia enviada:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Quantia a enviar" @@ -671,7 +671,7 @@ msgstr "Ocorreu um erro ao transmitir a transação" msgid "An uninitialized Digital Bitbox is detected." msgstr "Um Digital Bitbox não inicializado foi detectado." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "Ocorreu um erro desconhecido. Não é possível prosseguir." @@ -683,7 +683,7 @@ msgstr "Um {} não nomeado" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "Qualquer" @@ -691,7 +691,7 @@ msgstr "Qualquer" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Aparência" @@ -718,7 +718,7 @@ msgstr "Tem certeza que deseja prosseguir?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "Tem certeza que deseja desinstalar o plugin selecionado?" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "Tem certeza que deseja apagar este contato?" @@ -738,7 +738,7 @@ msgstr "MODEM de Áudio" msgid "Audio Modem Settings" msgstr "Configurações do Modem de Áudio" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "Autentique, por favor" @@ -796,19 +796,19 @@ msgstr "As sementes BIP39 não incluem um número de versão, o que compromete a #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Voltar" @@ -816,9 +816,9 @@ msgstr "Voltar" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Saldo" @@ -854,7 +854,7 @@ msgstr "Banimentos geralmente ocorrem quando outros shufflers detectam moedas in "Eles podem ocorrer ocasionalmente em circunstâncias raras. No entanto, se isso continuar acontecendo, entre em contato com os desenvolvedores e relate um bug." #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Unidade base" @@ -866,7 +866,7 @@ msgstr "Unidade base da sua carteira." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "Antes de relatar um bug, atualize para a versão mais recente do ViLight (versão mais recente ou git HEAD) e inclua o número da versão em seu relatório." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "Biométria indisponível" @@ -899,12 +899,12 @@ msgid "Both Receiving & Change (x2)" msgstr "Tanto recebidos como de troco (x2)" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Enviar" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Enviando transação..." @@ -920,7 +920,7 @@ msgstr "CPFP não mais válido" msgid "CSV" msgstr "CSV" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "Calculando os detalhes da transação..." @@ -932,41 +932,41 @@ msgstr "Não foi possível obter rede, desativando o CashShuffle." #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Cancelar" @@ -991,7 +991,7 @@ msgstr "Cancelando..." msgid "Cancelled by user" msgstr "Cancelado pelo usuário" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "Não é possível deletar a carteira ativa" @@ -999,13 +999,13 @@ msgstr "Não é possível deletar a carteira ativa" msgid "Cannot add this cosigner:" msgstr "Não é possível adicionar este cosigner:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "Não foi possível exibir a transação solicitada pois você não tem uma carteira aberta.\n\n" "Abra uma carteira e tente novamente." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "Não foi possível exibir a transação solicitada, pois você já tem uma caixa de diálogo aberta.\n\n" @@ -1019,16 +1019,16 @@ msgstr "Não pode achar uma biblioteca python para" msgid "Cannot read file" msgstr "Não pode ler o arquivo" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "Não foi possível enviar/receber novas transações." #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "Não é possível assinar mensagens com este tipo de endereço." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "Não é possível especificar chaves privadas e endereços na mesma carteira. Endereços resultarão em uma carteira watching-only e chaves privadas em uma carteira capaz de gastar moedas. Remova itens incompatíveis (deslizando-os para a esquerda)." @@ -1105,7 +1105,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "Formato CashAddr" @@ -1113,7 +1113,7 @@ msgstr "Formato CashAddr" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "Mostrar endereços em formato CashAddr" @@ -1197,25 +1197,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "Divisão de cadeia detectada no bloco %d" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Troco" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "Endereço de troco" @@ -1231,8 +1231,8 @@ msgstr "Alterar o PIN" msgid "Change Password" msgstr "Mudar senha" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "Alterar ou Definir Senha" @@ -1268,7 +1268,7 @@ msgstr "Filho paga pelo pai" msgid "Child pays for parent" msgstr "Filho paga pelo pai" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "Escolha o endereço" @@ -1290,7 +1290,7 @@ msgstr "Escolha o arquivo de backup:" msgid "Choose a password to encrypt your wallet keys." msgstr "Escolha uma senha para criptografar suas chaves de carteira." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "Escolha o endereço ou insira uma chave pública" @@ -1332,8 +1332,8 @@ msgstr "Escolha o explorador de bloco online a ser usado para funções que nece msgid "Choose..." msgstr "Escolher..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Limpar" @@ -1384,7 +1384,7 @@ msgstr "moeda" msgid "Coin & Address are frozen" msgstr "Moedas e endereços estão travados" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "Informação da moeda" @@ -1417,7 +1417,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "moedas" @@ -1433,7 +1433,7 @@ msgstr "Moedas (UTXOs) até este valor serão misturadas pelo CashShuffle." msgid "Color theme" msgstr "Tema de cores" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "Em breve" @@ -1449,7 +1449,7 @@ msgstr "Console" msgid "Con&tacts" msgstr "Contatos" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "Confirmar exclusão" @@ -1473,7 +1473,7 @@ msgstr "Confirmar Semente" msgid "Confirm Seed Extension" msgstr "Confirme a extensão da semente" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "Confirmar envio" @@ -1485,7 +1485,7 @@ msgstr "Confirmar Alternar Proteção de Frase Secreta" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "Confirmar Senha da Carteira" @@ -1558,13 +1558,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "Nós conectados" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "Conectado a %d nós." @@ -1585,34 +1585,34 @@ msgstr "Falha na conexão" msgid "Connections" msgstr "Conexões" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "Contato" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "Informações de Contato" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "Contato adicionado" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "Contato salvo" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Contatos" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "Controle suas chaves privadas" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "Converter entre formatos de endereço Legacy e CashAddr" @@ -1630,10 +1630,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "Copiar endereço" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "Copiar Chave Pública" @@ -1666,7 +1666,7 @@ msgstr "Copiar Chave Pública" msgid "Copy QR Image" msgstr "Copiar imagem QR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "Copiar Script" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy URI" msgstr "Copiar URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "Copiar UTXO" @@ -1694,7 +1694,7 @@ msgstr "Copiar UTXO" msgid "Copy and Close" msgstr "Copiar e Fechar" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "Copiar hash de entrada" @@ -1703,8 +1703,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Copiar para a Área de transferência" @@ -1771,7 +1771,7 @@ msgstr "Não foi possível assinar a mensagem" msgid "Could not sign message." msgstr "Não foi possível assinar a mensagem." -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "Relatador de Erro" @@ -1779,8 +1779,8 @@ msgstr "Relatador de Erro" msgid "Create" msgstr "Criar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "Criar nova carteira padrão" @@ -1788,7 +1788,7 @@ msgstr "Criar nova carteira padrão" msgid "Create a new seed" msgstr "Criar uma nova semente" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "Criar uma carteira usando uma chave mestra" @@ -1824,7 +1824,7 @@ msgstr "Tarifa personalizada em Satoshis por byte" msgid "Custom rate: " msgstr "Tarifa personalizada: " -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "Daemon não estava executando." @@ -1846,8 +1846,8 @@ msgstr "Escuro/Claro" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Data" @@ -1878,15 +1878,15 @@ msgstr "Padrão" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Deletar" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "Excluir Carteira" @@ -1898,12 +1898,12 @@ msgstr "Excluir a conta?" msgid "Delete wallet file?" msgstr "Apagar o arquivo da carteira?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "Derivação" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "Derivação Inválida" @@ -1911,7 +1911,7 @@ msgstr "Derivação Inválida" msgid "Derivation for {} wallet" msgstr "Derivação para carteira {}" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "Derivando endereços..." @@ -1919,22 +1919,22 @@ msgstr "Derivando endereços..." #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Descrição" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Descrição da transação (não é obrigatório)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detalhes" @@ -1984,7 +1984,7 @@ msgstr "Desativar Frases Secretas" msgid "Disabled" msgstr "Desabilitado" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "Espaço em disco baixo" @@ -2001,7 +2001,7 @@ msgid "Do not pair" msgstr "Não foi possível parear" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Não a armazene eletronicamente." @@ -2033,24 +2033,24 @@ msgstr "Você deseja enviar este relatório?" msgid "Do you wish to continue?" msgstr "Você deseja continuar?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2068,15 +2068,15 @@ msgstr "Concluído" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "Baixando Cabeçalhos" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "Baixando cabeçalhos da blockchain..." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "Baixando cabeçalhos {}% ..." @@ -2092,17 +2092,17 @@ msgstr "Devido a potenciais riscos de segurança, você só pode desativar SSL q msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "Faça o backup de sua carteira facilmente com uma frase de sementes mnemônica." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "Editar Contato" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Editar taxas manualmente" @@ -2116,7 +2116,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2125,7 +2125,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "ViLight se comunica com servidores remotos para pegar informações sobre suas transações e endereços. Os servidores são todos equivalentes. Normalmente é adequado deixar o ViLight escolher um servidor qualquer. Você tem a opção de selecionar um servidor manualmente." #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "O ViLight conecta a vários nós para baixar os cabeçalhos dos blocos e identificar a blockchain mais longa." @@ -2133,7 +2133,7 @@ msgstr "O ViLight conecta a vários nós para baixar os cabeçalhos dos blocos e msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "ViLight é uma carteira SPV para Vitae" @@ -2157,7 +2157,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "O ViLight envia os endereços da sua carteira para este um servidor. Isto permite recuperar o seu histórico de transações." @@ -2198,7 +2198,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "ViLight não foi capaz de abrir seu arquivo de transação" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "ViLight não foi capaz de ler sua transação" @@ -2297,12 +2297,12 @@ msgstr "Criptografar" msgid "Encrypt wallet file" msgstr "Criptografar o arquivo da carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "Criptografar/Descriptografar mensagem" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Criptografar/descriptografar mensagem" @@ -2326,7 +2326,7 @@ msgstr "Criptografia e descriptografia não são compatíveis com {} no momento" msgid "Encryption and decryption are not implemented by {}" msgstr "Criptografia e descriptografia não estão implementadas no {}" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "Aproveite a alta segurança" @@ -2343,10 +2343,10 @@ msgid "Enter Passphrase" msgstr "Insira a senha" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Insira a senha" @@ -2374,7 +2374,7 @@ msgstr "Insira uma lista de endereços Vitae (isso criará uma carteira watching msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Digite uma lista de saídas no campo 'Pagar para'." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "Insira uma lista de chaves privadas para criar uma carteira capaz de executar pagamentos. Como alternativa, você pode criar uma carteira watching-only inserindo uma lista de endereços Vitae." @@ -2406,11 +2406,11 @@ msgstr "Insira a chave do cossignatário" msgid "Enter cosigner seed" msgstr "Insira a semente do cossignatário" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "Digite o nome da nova carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "Insira ou selecione o endereço" @@ -2443,7 +2443,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de msgstr "Digite as palavras de recuperação pressionando os botões de acordo com o que aparece na tela do seu dispositivo. Você também pode usar seu NUMPAD.\n" "Pressione BACKSPACE para voltar uma escolha ou palavra.\n" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "Digite a mesma senha novamente" @@ -2474,17 +2474,17 @@ msgid "Enter your password or choose another file." msgstr "Digite sua senha ou escolha outro arquivo." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Digite sua senha para prosseguir" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "Digite sua frase de semente" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "Digite sua derivação de carteira aqui." @@ -2503,11 +2503,11 @@ msgstr "Apagar o Digital Bitbox" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Erro" @@ -2539,7 +2539,7 @@ msgstr "Erro: chave pública mestra duplicada" msgid "Exit ViLight" msgstr "Sair do ViLight" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2576,7 +2576,7 @@ msgstr "Exportar o histórico" msgid "Export file" msgstr "Exportar arquivo" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "Exportando carteira..." @@ -2589,7 +2589,7 @@ msgid "Extend this seed with custom words" msgstr "Estenda esta semente com palavras personalizadas" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "Endereço externo" @@ -2615,7 +2615,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "Falha ao enviar a trasação para o grupo de cossignatários." #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Erro ao atualizar a senha" @@ -2624,12 +2624,12 @@ msgid "Failed to verify SSL certificate" msgstr "Falha ao verificar certificado SSL" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Tarifa" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "Edição manual da taxa" @@ -2647,27 +2647,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "Sinta-se livre para adicionar seu endereço de e-mail se estiver disposto a fornecer mais detalhes, mas note que ele aparecerá no relatório no github." #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Tarifas" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Fiat" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "Quantidade de dinheiro" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Moeda fiat" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Ficheiro" @@ -2688,11 +2688,11 @@ msgid "Fixed rate: " msgstr "Tarifa fixa: " #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Siga este ramo" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2729,8 +2729,8 @@ msgid "Format: address, amount" msgstr "Formato: endereço, quantia" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "Travar" @@ -2772,11 +2772,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "Travado" @@ -2788,7 +2788,7 @@ msgstr "Completo" msgid "Full 2FA enabled. This is not supported yet." msgstr "2FA completo habilitado. Isso ainda não é suportado." -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "Com créditos" @@ -2816,24 +2816,24 @@ msgstr "Geralmente, uma taxa de 1,0 sats/B é adequada para que sua transação msgid "Generate a new random wallet" msgstr "Gerar uma nova carteira aleatória" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "Gerando semente..." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "Gerando seus endereços..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "Gerando sua carteira..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "Primeiros passos" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "Iniciar agora" @@ -2870,10 +2870,10 @@ msgid "Hardware Wallet Support..." msgstr "Suporte a Carteira de Hardware..." #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Número do bloco" @@ -2885,11 +2885,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Aqui está a sua chave pública principal." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2916,8 +2916,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Endereço" @@ -2970,7 +2970,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "Se 'Conectar apenas à servidores preferidos' estiver selecionado, ViLight só conectará em servidores marcados como 'preferidos' ({})." #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "Se configurado para selecionar servidor automaticamente, ViLight vai sempre escolher um servidor que está na blockchain mais longa." @@ -2991,7 +2991,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "Se não há fundos misturados suficientes, você pode esperar alguns minutos enquanto suas moedas são misturadas automaticamente." #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "Caso contrário, você tem que escolher qual servidor quer usar. ViLight vai avisar se o servidor escolhido está atrasado." @@ -3020,7 +3020,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "Se você não tem certeza do que se trata, deixe este campo sem mudanças." @@ -3065,12 +3065,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3087,12 +3087,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3102,14 +3102,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "Importar endereços ou chaves privadas" @@ -3117,7 +3117,7 @@ msgstr "Importar endereços ou chaves privadas" msgid "Import Vitae Addresses" msgstr "Importar Endereços Bitcoins" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "Importar endereços Vitae ou chaves privadas" @@ -3145,19 +3145,19 @@ msgstr "Importar chaves privadas" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3211,8 +3211,8 @@ msgstr "Índice" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Informação" @@ -3236,8 +3236,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Quantia de entrada" @@ -3249,7 +3249,7 @@ msgstr "Dado de entrada não é um ID de transação." msgid "Input raw transaction" msgstr "Insira uma transação bruta" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Entradas" @@ -3272,8 +3272,8 @@ msgid "Installed &Plugins" msgstr "&Plugins instalados" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Saldo insuficiente" @@ -3285,25 +3285,25 @@ msgstr "Integração" msgid "Internal error converting image" msgstr "Erro interno ao converter imagem" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "Inválido" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Endereço Inválido" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Quantidade Inválida" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "Endereço Vitae inválido" @@ -3336,9 +3336,9 @@ msgstr "Chave mestra inválida" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "Código QR inválido" @@ -3347,7 +3347,7 @@ msgid "Invalid amount" msgstr "Quantia inválida" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3359,7 +3359,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3379,7 +3379,7 @@ msgstr "Faturas" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3492,7 +3492,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "Endereço legacy" @@ -3532,7 +3532,7 @@ msgstr "Carregar uma transação" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "Locktime" @@ -3585,12 +3585,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "Tarifa manual" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "Chave mestra" @@ -3606,16 +3606,16 @@ msgstr "Chaves públicas mestras" msgid "Matrix" msgstr "Matriz" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Quantia máxima" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Tarifa máxima excedida" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "Tarifa estática máxima" @@ -3652,7 +3652,7 @@ msgid "Minimum coin:" msgstr "Valor mínimo:" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Tarifa de mineração" @@ -3664,7 +3664,7 @@ msgstr "Faltando libsecp256k1" msgid "Mobile pairing options" msgstr "Opções de pareamento com celular" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "Modificar configurações de senha e criptografia da carteira" @@ -3688,15 +3688,15 @@ msgstr "Carteira Multi-Assinatura" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "Meu endereço de troco" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "Meu endereço de recebimento" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "Minha Carteira" @@ -3706,12 +3706,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Nome" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "Nome está vazio" @@ -3724,11 +3724,11 @@ msgid "Needs update" msgstr "Atualização necessária" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Rede" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "Configurações de rede" @@ -3741,7 +3741,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Nunca" @@ -3751,7 +3751,7 @@ msgid "Never ask for this wallet" msgstr "Nunca perguntar para esta carteira" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Nunca divulgue sua semente." @@ -3760,7 +3760,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Nunca digite-a em um site." @@ -3769,8 +3769,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Novo Contato" @@ -3778,19 +3778,19 @@ msgstr "Novo Contato" msgid "New Password:" msgstr "Nova senha:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "Nova carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "Nova carteira criada" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Novo contato" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "Nova transação recebida: {}" @@ -3799,21 +3799,21 @@ msgid "New transaction: {}" msgstr "Nova transação: {}" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Próximo" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "Não" @@ -3821,7 +3821,7 @@ msgstr "Não" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3837,15 +3837,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Sem Carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3853,7 +3853,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "Sem moedas" @@ -3882,7 +3882,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Sem mensagem ou quantidade" @@ -3891,16 +3891,16 @@ msgid "No more addresses in your wallet." msgstr "Não há mais endereços em sua carteira." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Sem saídas" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3912,25 +3912,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "Nenhuma transação correspondente na mempool ou na blockchain." -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "Nenhuma transação" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "Nenhuma transação encontrada na blockchain." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Nenhum" @@ -3938,7 +3938,7 @@ msgstr "Nenhum" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "Não Excluído" @@ -3960,8 +3960,8 @@ msgstr "Não é um arquivo de texto" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Desconectado" @@ -4018,18 +4018,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Número de zeros exibidos depois do ponto decimal. Por exemplo, se for definido como 2, \"1.\" será exibido como \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "Concluído" @@ -4062,11 +4062,11 @@ msgstr "Script OP_RETURN muito grande, não deve ser maior que 223 bytes" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Desconectado" @@ -4101,13 +4101,13 @@ msgstr "Na maioria dos sistemas você pode fazer isso com este comando:" msgid "One output per line." msgstr "Uma saída por linha." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "Conectado" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Explorador de bloco online" @@ -4135,11 +4135,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "Abrir Nova Carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "Abrir carteira" @@ -4159,12 +4159,12 @@ msgstr "Apelido" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "Registro Apelido, usado para receber moedas e assinar pedidos de pagamento." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "Abrindo carteira criptografada: '{}'" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "Abrindo {}..." @@ -4177,12 +4177,12 @@ msgid "Optional Features" msgstr "Recursos opcionais" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Opções" @@ -4191,8 +4191,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4207,7 +4207,7 @@ msgstr "Valor de saída" msgid "Output point" msgstr "Ponto de saída" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Saídas" @@ -4260,21 +4260,21 @@ msgstr "" msgid "Password" msgstr "Senha" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "Senha incorreta" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "Senha necessária" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Segurança da palavra-passe" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "A senha está desativada, esta carteira não está protegida" @@ -4289,7 +4289,7 @@ msgid "Password must have less than 64 characters." msgstr "Senha deve ter menos de 64 caracteres." #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "A palavra-passe foi atualizada com sucesso" @@ -4297,7 +4297,7 @@ msgstr "A palavra-passe foi atualizada com sucesso" msgid "Password:" msgstr "Senha:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "Cole um endereço ou use código QR" @@ -4323,9 +4323,9 @@ msgid "Pay Now" msgstr "Pagar agora" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Pagar para" @@ -4337,21 +4337,21 @@ msgstr "Pagar para múltiplos endereços" msgid "Payment Request" msgstr "Pedido de pagamento" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "Erro com o pedido de pagamento" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "O pedido de pagamento expirou" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "Pedido de pagamento salvo" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Pagamento enviado." @@ -4380,7 +4380,7 @@ msgid "Players" msgstr "Usuários" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4412,7 +4412,7 @@ msgstr "Digite o público chave mestra (Xpub) do seu fiador." msgid "Please enter the master public key of cosigner #{}:" msgstr "Insira chave pública mestra do cossignatário número {}:" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4446,19 +4446,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4479,7 +4479,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "Por favor guarde essas %d palavras em um papel (a ordem é importante). " @@ -4492,7 +4492,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Compartilhe-o com seus co-autores." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4516,8 +4516,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Aguarde" @@ -4535,7 +4535,7 @@ msgstr "Aguarde..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4568,7 +4568,7 @@ msgid "Pool size" msgstr "Tamanho da pool" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Porta" @@ -4576,7 +4576,7 @@ msgstr "Porta" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "Publica uma nota PERMANENTE na blockchain VITAE como parte desta transação." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "Operação potencialmente insegura" @@ -4605,7 +4605,7 @@ msgstr "Pressione 'Avançar' para abrir esta carteira." msgid "Press Enter" msgstr "Pressione Enter" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Visualização" @@ -4613,14 +4613,14 @@ msgstr "Visualização" msgid "Privacy Warning" msgstr "Aviso de privacidade" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "Chave Privada" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Chave privada" @@ -4637,7 +4637,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Prosseguir?" @@ -4682,7 +4682,7 @@ msgid "Proxy user" msgstr "Usuário do proxy" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Chave pública" @@ -4694,10 +4694,10 @@ msgstr "Chaves públicas" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4706,9 +4706,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "Código QR" @@ -4736,7 +4736,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "Questão" @@ -4782,8 +4782,8 @@ msgid "Rebuild this wallet's history now?" msgstr "Recriar o histórico de transações desta carteira agora?" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Recebimento" @@ -4796,13 +4796,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "Recebimento" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "Endereço de recebimento" @@ -4810,7 +4810,7 @@ msgstr "Endereço de recebimento" msgid "Receiving Addresses Only" msgstr "Somente endereços de recebimento" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Endereço de recebimento" @@ -4823,11 +4823,11 @@ msgid "Recover from a seed you have previously written down" msgstr "Recuperar de uma semente que você escreveu em papel" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Resgatar Script" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "Reinsira sua semente" @@ -4849,10 +4849,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Remover" @@ -4874,20 +4874,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "Renomear" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "Renomear carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "Conteúcdo do relatório" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "Relatório enviado" @@ -4899,17 +4899,17 @@ msgstr "Relatar falhas" msgid "Request &expires" msgstr "O pedido &expira" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "URI do pedido" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "O pedido expira" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "Solicitar pagamento" @@ -4925,7 +4925,7 @@ msgstr "Pedido enviado." msgid "Requested &amount" msgstr "&Valor solicitado" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Valor solicitado" @@ -4933,8 +4933,8 @@ msgstr "Valor solicitado" msgid "Requestor" msgstr "Solicitador" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Requisição" @@ -4967,8 +4967,8 @@ msgstr "Resolver problema do servidor..." msgid "Restart the CashShuffle plugin now?" msgstr "Reiniciar o plugin do CashShuffle agora?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "Restaurar através da semente" @@ -5012,13 +5012,13 @@ msgstr "Certificado SSL usado para assinar pedidos de pagamento." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "SSL é usado para autentica e criptografar sua conexão com os servidores da blockchain." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "Satoshi Nakamoto" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Salvar" @@ -5026,8 +5026,8 @@ msgstr "Salvar" msgid "Save QR Image" msgstr "Salvar imagem QR" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "Salvar carteira" @@ -5043,7 +5043,7 @@ msgstr "Salve a fatura no arquivo" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "Salvar/exportar carteira" @@ -5072,7 +5072,7 @@ msgid "Scrambled words" msgstr "Palavras misturadas" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "Tipo de script" @@ -5090,11 +5090,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5107,8 +5107,8 @@ msgid "Security Warning" msgstr "Aviso de segurança" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Semente" @@ -5116,7 +5116,7 @@ msgstr "Semente" msgid "Seed Entered" msgstr "Semente digitada" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5176,7 +5176,7 @@ msgstr "Selecionar servidor automaticamente" msgid "Select server manually" msgstr "Selecionar um servidor manualmente" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5201,9 +5201,9 @@ msgid "Select your transaction file" msgstr "Selecione o seu ficheiro de transação" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Enviar" @@ -5235,7 +5235,7 @@ msgstr "" msgid "Send via e-mail" msgstr "Enviar via e-mail" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "Enviando relatório..." @@ -5248,7 +5248,7 @@ msgstr "Servidor" msgid "Server Error" msgstr "Erro com o servidor" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "Servidor está atrasado" @@ -5269,7 +5269,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "Servidor está atrasado ({} blocos)" @@ -5305,46 +5305,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Definições" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Exibir" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5352,20 +5352,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "Mostrar saldo em moeda Fiat para cada endereço" @@ -5381,14 +5381,14 @@ msgstr "" msgid "Show QR Code" msgstr "Exibir Código QR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Mostrar como código QR" @@ -5401,11 +5401,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Exibir taxas históricas" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5480,7 +5480,7 @@ msgid "Shuffling Paused" msgstr "CashShuffle pausado" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Assinar" @@ -5488,12 +5488,12 @@ msgstr "Assinar" msgid "Sign all transactions using Schnorr signatures." msgstr "Assinar todas as transações com assinaturas Schnorr." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "Assinar/verificar mensagem" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Assinar/verificar mensagem" @@ -5506,7 +5506,7 @@ msgid "Signature" msgstr "Assinatura" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Assinatura verificada" @@ -5527,17 +5527,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Contrato de assinatura..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Tamanho:" @@ -5551,12 +5551,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "Alguns dos seus fundos não misturados podem estar temporariamente travados enquando o CashShuffle está processando. Se desejar destravar estes fundos imediatamente, use o botão 'Pausar CashShuffle'." #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "Algo aconteceu de errado com o ViLight." #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "Desculpe!" @@ -5565,11 +5565,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "Desculpe, incapaz de procurar por novas atualizações. Tente novamente mais tarde." #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Fonte de taxa indicativa" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5582,11 +5582,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "Gastar" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "Gastar de" @@ -5602,20 +5602,20 @@ msgstr "Gastar não misturados" msgid "Spend from" msgstr "Gastar deste endereço" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "Gastar deste endereço" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "Gastar esta moeda" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "Gastar esta moeda e selecionados" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Gastar apenas moedas confirmadas" @@ -5639,7 +5639,7 @@ msgstr "Gastar moedas com CashShuffle desativo pode comprometer sua privacidade msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "Gastar moedas pode comprometer sua privacidade não somente para novas moedas recebidas, mas também de seus gastos passados de moedas misturadas." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "Carteira padrão" @@ -5654,15 +5654,15 @@ msgstr "Começar a escanear" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Status" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Status:" @@ -5671,10 +5671,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Concluído" @@ -5702,13 +5702,13 @@ msgstr "Varrer chaves privadas" msgid "Synchronize now?" msgstr "Sincronizar agora?" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Sincronizando..." @@ -5720,27 +5720,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5770,18 +5770,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5802,10 +5802,10 @@ msgstr "A quantidade de taxa pode ser decidida livremente por quem enviar. Poré msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "O valor será exibido em vermelho, se você não tiver fundos suficientes na sua carteira." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5856,7 +5856,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5865,11 +5865,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5921,20 +5921,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5946,7 +5946,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5962,7 +5962,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6037,7 +6037,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6064,11 +6064,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Esse bloco é usado para verificar as transações enviadas pelo seu servidor de transações." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6101,17 +6101,17 @@ msgid "This is a preferred server" msgstr "Este é um servidor preferido" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Esta é um carteira watching-only" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "Esta é uma carteira watching-only." @@ -6120,7 +6120,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "Esta é a tarifa que será utilizada nesta transação." #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Este é o número de blocos na sua cópia local da blockchain." @@ -6129,12 +6129,12 @@ msgid "This may result in higher transactions fees." msgstr "Isso pode resultar em maiores taxas de transações." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "Isto significa que você não conseguirá gastar Vitae com ela." #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Este pedido de pagamento será assinado." @@ -6142,14 +6142,14 @@ msgstr "Este pedido de pagamento será assinado." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Esta semente permite recuperar a sua carteira em caso de falha do computador." @@ -6165,7 +6165,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6175,7 +6175,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "Esta ferramenta converte endereços de Vitae entre diferentes formatos.\n" @@ -6189,7 +6189,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Esta operação não foi salva. Fechar de qualquer maneira?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6197,16 +6197,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Esta carteira tem nenhuma semente" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6245,30 +6245,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "Para criar uma carteira capaz de executar pagamentos, insira a chave privada mestra (xprv/yprv/zprv)." #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "Para criar uma carteira watching-only, insira a chanve pública mestra (xpub/ypub/zpub)." #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Para garantir que guardou corretamente a sua semente, por favor volte a introduzi-la aqui." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6288,9 +6288,9 @@ msgstr "Trocar apresentação formato CashAddr ou Legacy" msgid "Toggle CashShuffle" msgstr "Ligar/desligar CashShuffle" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "Trocar formato" @@ -6314,7 +6314,7 @@ msgstr "" msgid "Too small" msgstr "Valor baixo" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "Ferramentas" @@ -6322,25 +6322,25 @@ msgstr "Ferramentas" msgid "Total size" msgstr "Tamanho total" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "Touch/Face ID desativados para esta carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "Touch/Face ID ativados para a carteira" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transação" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "Detalhes da transação" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "Histórico de transação" @@ -6349,20 +6349,20 @@ msgid "Transaction ID" msgstr "ID da transação" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID da transação:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "Entradas da transação {}" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "Transação não encontrada" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "Saídas da transação {}" @@ -6378,7 +6378,7 @@ msgstr "Transação não pôde ser enviada por causa de saídas abaixo do limiar msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "Transação não pôde ser enviada por causa de entradas inexistentes, já gastas ou inválidas." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "Histórico de transações pode ainda não ser atual." @@ -6391,8 +6391,8 @@ msgid "Transaction saved successfully" msgstr "Transações salvas" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transação não relacionada com a sua carteira" @@ -6405,9 +6405,9 @@ msgid "Transaction:" msgstr "Transação:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transações" @@ -6428,11 +6428,11 @@ msgid "Tx" msgstr "Tx" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "Tipo" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "Digite 'delete' para continuar" @@ -6441,8 +6441,8 @@ msgid "Type: '{}' below to proceed" msgstr "Digite: '{}' abaixo para continuar" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "UTXO" @@ -6466,7 +6466,7 @@ msgstr "Não foi possível criar csv" msgid "Unable to export history" msgstr "Não foi possível exportar histórico" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6522,8 +6522,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "Destravar" @@ -6549,16 +6549,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Desconhecido" @@ -6566,7 +6566,7 @@ msgstr "Desconhecido" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "Não assinado" @@ -6574,7 +6574,7 @@ msgstr "Não assinado" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "Código QR não suportado" @@ -6586,7 +6586,7 @@ msgstr "Script de saída não suportado" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "Não usado" @@ -6606,7 +6606,7 @@ msgstr "" msgid "Update check failed" msgstr "Falha ao verificar atualização" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6638,12 +6638,12 @@ msgstr "Usar SSL" msgid "Use Tor Proxy" msgstr "Usar Proxy Tor" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "Usar Touch/Face ID" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "Use uma chave mestra" @@ -6652,18 +6652,18 @@ msgid "Use a hardware device" msgstr "Usar um dispositivo de hardware" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Usar como servidor" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Utilizar endereços de troco" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Use endereços de troco múltiplos" @@ -6679,24 +6679,24 @@ msgstr "Usar chaves públicas ou privadas" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Use setconfig para definir ssl_chain e ssl_privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Use esta caixa de diálogo para adicionar uma senha à sua carteira." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Use esta caixa de diálogo para alterar sua senha." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "Usado" @@ -6716,7 +6716,7 @@ msgstr "Usar endereços de troco torna mais difícil para outras pessoas rastrea msgid "Using this mode presents a potential security risk." msgstr "Usar este modo apresenta um potencial risco de segurança." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "Válido" @@ -6729,7 +6729,7 @@ msgstr "" msgid "Verify" msgstr "Verificar" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "Verificar mensagem" @@ -6783,11 +6783,11 @@ msgstr "Ver fatura" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Ver no explorador de blocos" @@ -6803,7 +6803,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "Ver a semente para recuperação de carteira" @@ -6812,7 +6812,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "AVISO" @@ -6840,22 +6840,22 @@ msgstr "Carteira" msgid "Wallet Information" msgstr "Informações da carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "Operaçoes na carteira" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "Senha da carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "Semente de recuperação de carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "Semente da carteira" @@ -6863,11 +6863,11 @@ msgstr "Semente da carteira" msgid "Wallet backup created" msgstr "Backup da carteira criado" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "Carteira deletada com sucesso" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "Arquivo de carteira" @@ -6883,15 +6883,15 @@ msgstr "Carteira não tem endereço de destino para varredura" msgid "Wallet name" msgstr "Nome da carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6899,7 +6899,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "Carteira removida: {}" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "Carteira renomeada" @@ -6907,7 +6907,7 @@ msgstr "Carteira renomeada" msgid "Wallet type" msgstr "Tipo da carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "Carteiras" @@ -6938,11 +6938,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "Erro encontrado ao conectar ao dispositivo:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "Bem-vindo a" @@ -6991,32 +6991,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Assinatura incorreta" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "Sim" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7026,7 +7026,7 @@ msgid "You are already on the latest version of ViLight." msgstr "Você já tem a última versão disponível do ViLight." #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Você está seguindo o ramo" @@ -7043,11 +7043,11 @@ msgstr "Você passará a gastar moedas não misturadas. Tem certez msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "Você está renomeando a carteira aberta criptografada '{}'." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7067,7 +7067,7 @@ msgstr "Você está usando uma mensagem OP_RETURN. Esta mensagem ficará permane msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "Você pode adicionar ou remover qualquer servidor desta lista e opcionalmente selecionar para só conectar à servidores preferidos." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "Você pode também criar uma nova carteira selecionando a opção 'Adicionar nova carteira'." @@ -7075,11 +7075,11 @@ msgstr "Você pode também criar uma nova carteira selecionando a opção 'Adici msgid "You can download the new version from:
{}" msgstr "Você pode baixar a nova versão em:
{}" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7091,11 +7091,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7122,7 +7122,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7142,7 +7142,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7150,7 +7150,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7171,13 +7171,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "Suas contas foram movidas para" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Seus bitcoins estão protegidos por senha. No entanto, seu arquivo de carteira não está criptografado." @@ -7198,7 +7198,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "Tarifa muito alta. Máximo é 500 sat/byte." @@ -7214,7 +7214,7 @@ msgstr "Rótulos exportados para" msgid "Your labels were imported from" msgstr "Rótulos importados de" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7227,7 +7227,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "Sua extensão de sementes é" @@ -7236,12 +7236,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "A sua semeação é importante!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Seu servidor está no ramo" @@ -7254,7 +7254,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Sua semente de geração de carteira é:" @@ -7263,12 +7263,12 @@ msgid "Your wallet history has been successfully exported." msgstr "O histórico da sua carteira foi exportado com sucesso." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Sua carteira não está protegida." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Sua carteira é protegida por senha e criptografada." @@ -7281,7 +7281,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Casas decimais" @@ -7342,7 +7342,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7351,8 +7351,8 @@ msgid "are frozen" msgstr "estão travados" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "blocos" @@ -7360,8 +7360,8 @@ msgstr "blocos" msgid "color" msgstr "cor" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "confirmações" @@ -7373,7 +7373,7 @@ msgstr "fiador" msgid "decrypting..." msgstr "descriptografando" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "deletar" @@ -7389,7 +7389,7 @@ msgstr "tarifa" msgid "initialized" msgstr "inicializado" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7414,7 +7414,7 @@ msgid "password incorrect" msgstr "senha incorreta" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "aguarde..." @@ -7449,15 +7449,15 @@ msgstr "não confirmado" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "desconhecida" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "desconhecido (baixa tarifa)" @@ -7478,7 +7478,7 @@ msgid "unverified" msgstr "não verificado" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "apenas leitura" @@ -7486,7 +7486,7 @@ msgstr "apenas leitura" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7551,15 +7551,15 @@ msgstr "{} contatos exportados para '{}'" msgid "{} contacts successfully imported." msgstr "{} contatos exportados." -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "{} copiado para a área de transferência" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7567,7 +7567,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7575,11 +7575,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7591,23 +7591,23 @@ msgstr "{} novas transações: {}" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/pt_PT/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/pt_PT/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/pt_PT/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/pt_PT/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/pt_PT/electron-cash.po b/contrib/electrum-locale/locale/pt_PT/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/pt_PT/electron-cash.po rename to contrib/electrum-locale/locale/pt_PT/vilight.po index 02e948dde..a1ee567b2 100644 --- a/contrib/electrum-locale/locale/pt_PT/electron-cash.po +++ b/contrib/electrum-locale/locale/pt_PT/vilight.po @@ -24,7 +24,7 @@ msgstr " (Sem a taxa FX disponível)" msgid " These settings affects the fields in the Send tab" msgstr "  Estas configurações afetam os campos no separador Enviar" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " copiado para a área de transferência" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d minutos" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d elemento(s) válido(s)" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Endereços" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 hora" msgid "1 week" msgstr "1 semana" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Uma cópia dos seu ficheiro de carteira foi criado em" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Uma taxa de transação sugerida será adicionada a este campo. Pode alterar a sugestão. A taxa sugerida aumenta com o tamanho da transação." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "Adicione um teclado virtual opcional quando for digitar a senha." msgid "Add cosigner" msgstr "Adicione um cosigner" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Taxas adicionais" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Endereço" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "Endereço não está na carteira." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Tudo" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Quantia" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Quantia recebida:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Quantia enviada:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Quantia a enviar" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "Um sem nome {}" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Aparência" @@ -718,7 +718,7 @@ msgstr "Tem certeza que deseja prosseguir?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -738,7 +738,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "Autenticar, por favor" @@ -796,19 +796,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Voltar" @@ -816,9 +816,9 @@ msgstr "Voltar" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Saldo" @@ -853,7 +853,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Unidade base" @@ -865,7 +865,7 @@ msgstr "Unidade base da sua carteira." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -898,12 +898,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Transmitir" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "A transmitir a transação..." @@ -919,7 +919,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -931,41 +931,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Cancelar" @@ -990,7 +990,7 @@ msgstr "" msgid "Cancelled by user" msgstr "Cancelado pelo utilizador" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "Não é possível apagar a carteira activa" @@ -998,12 +998,12 @@ msgstr "Não é possível apagar a carteira activa" msgid "Cannot add this cosigner:" msgstr "Não é possível adicionar este co-assinante:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1016,16 +1016,16 @@ msgstr "" msgid "Cannot read file" msgstr "Não é possível ler o ficheiro" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1102,7 +1102,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1194,25 +1194,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Troco" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1228,8 +1228,8 @@ msgstr "Alterar PIN" msgid "Change Password" msgstr "Mudar senha" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1265,7 +1265,7 @@ msgstr "Filho paga pelo Pai" msgid "Child pays for parent" msgstr "Filho paga pelo pai" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1286,7 +1286,7 @@ msgstr "Escolha o arquivo de backup:" msgid "Choose a password to encrypt your wallet keys." msgstr "Escolha uma palavra-passe para encriptar as chaves da sua carteira." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1325,8 +1325,8 @@ msgstr "Selecione qual o explorador de blocos online a usar para funções que a msgid "Choose..." msgstr "Selecionar..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Limpar" @@ -1377,7 +1377,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1410,7 +1410,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1426,7 +1426,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1442,7 +1442,7 @@ msgstr "Con&sola" msgid "Con&tacts" msgstr "Con&tactos" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1466,7 +1466,7 @@ msgstr "Confirme Semente" msgid "Confirm Seed Extension" msgstr "Confirme a extensão da semente" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1478,7 +1478,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1551,13 +1551,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1578,34 +1578,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Contactos" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1623,10 +1623,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1651,7 +1651,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1659,7 +1659,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1679,7 +1679,7 @@ msgstr "" msgid "Copy URI" msgstr "Copiar URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1687,7 +1687,7 @@ msgstr "" msgid "Copy and Close" msgstr "Copiar e Fechar" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1696,8 +1696,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Copiar para a área de transferência" @@ -1764,7 +1764,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1772,8 +1772,8 @@ msgstr "" msgid "Create" msgstr "Criar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1781,7 +1781,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1817,7 +1817,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1839,8 +1839,8 @@ msgstr "Escuro/Claro" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Data" @@ -1871,15 +1871,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Apagar" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1891,12 +1891,12 @@ msgstr "Apagar fatura?" msgid "Delete wallet file?" msgstr "Apagar a carteira?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1904,7 +1904,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1912,22 +1912,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Descrição" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Descrição da transação (não obrigatório)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detalhes" @@ -1977,7 +1977,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1994,7 +1994,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Não a guarde eletronicamente." @@ -2026,24 +2026,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Deseja continuar?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2061,15 +2061,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2085,17 +2085,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Editar taxas manualmente" @@ -2109,7 +2109,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2118,7 +2118,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2126,7 +2126,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2150,7 +2150,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2191,7 +2191,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2290,12 +2290,12 @@ msgstr "Encriptar" msgid "Encrypt wallet file" msgstr "Encriptar o ficheiro da carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Encriptar/desencriptar Mensagem" @@ -2319,7 +2319,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2336,10 +2336,10 @@ msgid "Enter Passphrase" msgstr "Introduza a Frase-passe" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Digite a palavra-passe" @@ -2367,7 +2367,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Introduza uma lista de saídas no campo 'Pagar a\"." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2399,11 +2399,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2435,7 +2435,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2466,17 +2466,17 @@ msgid "Enter your password or choose another file." msgstr "Introduza a sua palavra-passe ou escolha outro ficheiro." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Introduza a sua palavra-passe para continuar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2495,11 +2495,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Erro" @@ -2531,7 +2531,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2568,7 +2568,7 @@ msgstr "Exportar Histórico" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2581,7 +2581,7 @@ msgid "Extend this seed with custom words" msgstr "Alargar esta semente com palavras personalizadas" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2607,7 +2607,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Erro ao atualizar a palavra-passe" @@ -2616,12 +2616,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Comissão" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2639,27 +2639,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Taxas" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Moeda Fiduciária" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Moeda Fiduciária" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Ficheiro" @@ -2680,11 +2680,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Seguir este ramo" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2719,8 +2719,8 @@ msgid "Format: address, amount" msgstr "Formato: endereço, quantia" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2762,11 +2762,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2778,7 +2778,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2806,24 +2806,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2860,10 +2860,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Altura" @@ -2875,11 +2875,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Aqui está a sua chave pública mestra." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2906,8 +2906,8 @@ msgstr "Tela inicial" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Servidor anfitrião" @@ -2960,7 +2960,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2981,7 +2981,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3010,7 +3010,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3055,12 +3055,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3077,12 +3077,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3092,14 +3092,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3107,7 +3107,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3135,19 +3135,19 @@ msgstr "Importar chaves privadas" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3201,8 +3201,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Informação" @@ -3226,8 +3226,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Introduzir valor" @@ -3239,7 +3239,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Introduza uma transação em bruto" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Entradas" @@ -3261,8 +3261,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Fundos insuficientes" @@ -3274,25 +3274,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Endereço Inválido" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Quantia Inválida" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3325,9 +3325,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3336,7 +3336,7 @@ msgid "Invalid amount" msgstr "Quantia inválida" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3348,7 +3348,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3368,7 +3368,7 @@ msgstr "Faturas" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3481,7 +3481,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3521,7 +3521,7 @@ msgstr "Carregar uma transação" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3574,12 +3574,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3595,16 +3595,16 @@ msgstr "Chaves Públicas Mestras" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Máx" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Taxa máxima excedida" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3641,7 +3641,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Taxa de mineração" @@ -3653,7 +3653,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3677,15 +3677,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3695,12 +3695,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Nome" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3713,11 +3713,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Rede" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3730,7 +3730,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Nunca" @@ -3740,7 +3740,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Nunca revele a sua semente." @@ -3749,7 +3749,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Nunca a escreva num website." @@ -3758,8 +3758,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Novo Contacto" @@ -3767,19 +3767,19 @@ msgstr "Novo Contacto" msgid "New Password:" msgstr "Nova palavra-passe:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Novo contacto" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3788,21 +3788,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Próximo" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "Não" @@ -3810,7 +3810,7 @@ msgstr "Não" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3826,15 +3826,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Sem Carteira" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3842,7 +3842,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3871,7 +3871,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Não há mensagem ou quantia" @@ -3880,16 +3880,16 @@ msgid "No more addresses in your wallet." msgstr "Não há mais endereços na sua carteira." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Não há saídas" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3901,25 +3901,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Nenhum" @@ -3927,7 +3927,7 @@ msgstr "Nenhum" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3949,8 +3949,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Não está ligado" @@ -4007,18 +4007,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Número de zeros apresentados a seguir ao ponto decimal. Por exemplo, se isto estiver definido como 2, \"1.\" será apresentado como \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4051,11 +4051,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4090,13 +4090,13 @@ msgstr "" msgid "One output per line." msgstr "Uma saída por linha." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Explorador de Blocos Online" @@ -4124,11 +4124,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4148,12 +4148,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "Registo OpenAlias, utilizado para receber bitcoins e assinar pedidos de pagamento." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4166,12 +4166,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Opções" @@ -4180,8 +4180,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4196,7 +4196,7 @@ msgstr "Quantia de saída" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Saídas" @@ -4249,21 +4249,21 @@ msgstr "" msgid "Password" msgstr "Palavra-passe" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Segurança da palavra-passe" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "A palavra-passe está desativada, esta carteira não está protegida" @@ -4278,7 +4278,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "A palavra-passe foi atualizada com sucesso" @@ -4286,7 +4286,7 @@ msgstr "A palavra-passe foi atualizada com sucesso" msgid "Password:" msgstr "Palavra-passe:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4312,9 +4312,9 @@ msgid "Pay Now" msgstr "Pagar Agora" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Pagar a" @@ -4326,21 +4326,21 @@ msgstr "Pagar a vários" msgid "Payment Request" msgstr "Pedido de Pagamento" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "O pedido de pagamento caducou" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Pagamento enviado." @@ -4369,7 +4369,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4401,7 +4401,7 @@ msgstr "Por favor introduza a chave pública mestra (xpub) do seu cossignatário msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4435,19 +4435,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4468,7 +4468,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4481,7 +4481,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Por favor partilhe com os seus cossignatários." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4505,8 +4505,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Por favor aguarde" @@ -4524,7 +4524,7 @@ msgstr "Aguarde, por favor..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4557,7 +4557,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Porta" @@ -4565,7 +4565,7 @@ msgstr "Porta" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4594,7 +4594,7 @@ msgstr "Clique em \"Próximo\" para abrir esta carteira." msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Pré-visualização" @@ -4602,14 +4602,14 @@ msgstr "Pré-visualização" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Chave privada" @@ -4626,7 +4626,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Continuar?" @@ -4671,7 +4671,7 @@ msgid "Proxy user" msgstr "Utilizador do Proxy" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Chave pública" @@ -4683,10 +4683,10 @@ msgstr "Chaves públicas" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4695,9 +4695,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "Código QR" @@ -4725,7 +4725,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4771,8 +4771,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Receber" @@ -4785,13 +4785,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4799,7 +4799,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Endereço de recebimento" @@ -4812,11 +4812,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Resgatar Script" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4838,10 +4838,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Remover" @@ -4863,20 +4863,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4888,17 +4888,17 @@ msgstr "A relatar Bugs" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "O pedido caduca" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4914,7 +4914,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Quantia pedida" @@ -4922,8 +4922,8 @@ msgstr "Quantia pedida" msgid "Requestor" msgstr "Requerente" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Pedidos" @@ -4956,8 +4956,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5001,13 +5001,13 @@ msgstr "Certificado SSL utilizado para assinar pedidos de pagamento." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Guardar" @@ -5015,8 +5015,8 @@ msgstr "Guardar" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5032,7 +5032,7 @@ msgstr "Guardar fatura para ficheiro" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5061,7 +5061,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5079,11 +5079,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5096,8 +5096,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Semente" @@ -5105,7 +5105,7 @@ msgstr "Semente" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5165,7 +5165,7 @@ msgstr "Selecionar servidor automaticamente" msgid "Select server manually" msgstr "Selecionar servidor manualmente" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5190,9 +5190,9 @@ msgid "Select your transaction file" msgstr "Selecione o seu ficheiro de transação" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Enviar" @@ -5224,7 +5224,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5237,7 +5237,7 @@ msgstr "Servidor" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5258,7 +5258,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5294,46 +5294,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Definições" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Mostrar" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5341,20 +5341,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5370,14 +5370,14 @@ msgstr "" msgid "Show QR Code" msgstr "Mostrar Código QR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Mostrar como Código QR" @@ -5390,11 +5390,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Mostrar histórico de preços" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5469,7 +5469,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Assinar" @@ -5477,12 +5477,12 @@ msgstr "Assinar" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Assinar/verificar Mensagem" @@ -5495,7 +5495,7 @@ msgid "Signature" msgstr "Assinatura" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Assinatura verificada" @@ -5516,17 +5516,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "A assinar transação..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Tamanho:" @@ -5540,12 +5540,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5554,11 +5554,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Fonte" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5571,11 +5571,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5591,20 +5591,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Gastar apenas moedas confirmadas" @@ -5628,7 +5628,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5643,15 +5643,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Estado" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Estado:" @@ -5660,10 +5660,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Concluído" @@ -5691,13 +5691,13 @@ msgstr "Varrer chaves privadas" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "A sincronizar..." @@ -5709,27 +5709,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5759,18 +5759,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5791,10 +5791,10 @@ msgstr "O valor da taxa pode ser decidido livremente pelo remetente. Contudo, tr msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "O valor será mostrado a vermelho se não tiver fundos suficientes na sua carteira." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5845,7 +5845,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5854,11 +5854,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5910,20 +5910,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5935,7 +5935,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5951,7 +5951,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6026,7 +6026,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6052,11 +6052,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Esta blockchain é utilizada para verificar as transações enviadas pelo seu servidor de transações." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6089,17 +6089,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Esta é uma carteira de apenas-visualização" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6108,7 +6108,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Esta é a altura da sua cópia local do blockchain." @@ -6117,12 +6117,12 @@ msgid "This may result in higher transactions fees." msgstr "Isto poderá resultar em taxas de transação mais altas." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Este pedido de pagamento será assinado." @@ -6130,14 +6130,14 @@ msgstr "Este pedido de pagamento será assinado." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Esta semente vai permitir-lhe recuperar a sua carteira em caso de falha do computador." @@ -6153,7 +6153,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6163,7 +6163,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6176,7 +6176,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Esta transação não foi guardada. Fechar na mesma?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6184,16 +6184,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Esta carteira não tem semente" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6232,30 +6232,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Para garantir que guardou corretamente a sua semente, por favor volte a introduzi-la aqui." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6275,9 +6275,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6301,7 +6301,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6309,25 +6309,25 @@ msgstr "" msgid "Total size" msgstr "Tamanho total" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transação" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6336,20 +6336,20 @@ msgid "Transaction ID" msgstr "ID da transação" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID da Transação:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6365,7 +6365,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6378,8 +6378,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transação não relacionada com a sua carteira" @@ -6392,9 +6392,9 @@ msgid "Transaction:" msgstr "Transação:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transações" @@ -6415,11 +6415,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6428,8 +6428,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6453,7 +6453,7 @@ msgstr "Incapaz de criar csv" msgid "Unable to export history" msgstr "Incapaz de exportar histórico" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6509,8 +6509,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6536,16 +6536,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Desconhecido" @@ -6553,7 +6553,7 @@ msgstr "Desconhecido" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6561,7 +6561,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6573,7 +6573,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6593,7 +6593,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6625,12 +6625,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Usar Proxy TOR" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6639,18 +6639,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Usar como servidor" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Utilizar endereços de troco" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Utilizar múltiplos endereços de troco" @@ -6666,24 +6666,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Use setconfig para definir ssl_chain e ssl_privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Use este diálogo para adicionar uma palavra-passe à sua carteira." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Use este diálogo para alterar a sua palavra-passe." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6703,7 +6703,7 @@ msgstr "Utilizar endereços de troco faz com que seja mais difícil para outras msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6716,7 +6716,7 @@ msgstr "" msgid "Verify" msgstr "Verificar" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6770,11 +6770,11 @@ msgstr "Ver Fatura" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Ver no explorador de blocos" @@ -6790,7 +6790,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6799,7 +6799,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "AVISO" @@ -6827,22 +6827,22 @@ msgstr "Carteira" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6850,11 +6850,11 @@ msgstr "" msgid "Wallet backup created" msgstr "Cópia de segurança da carteira criada" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6870,15 +6870,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6886,7 +6886,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6894,7 +6894,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6927,11 +6927,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6980,32 +6980,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Assinatura errada" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7015,7 +7015,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Está a seguir ramo" @@ -7032,11 +7032,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7056,7 +7056,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7064,11 +7064,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7080,11 +7080,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7111,7 +7111,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7131,7 +7131,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7139,7 +7139,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7160,13 +7160,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "As suas contas foram movidas para" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "As suas bitcoins estão protegidas por palavra-passe. No entanto, a sua carteira não está encriptada." @@ -7187,7 +7187,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7203,7 +7203,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7216,7 +7216,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "A extensão da sua semente é" @@ -7225,12 +7225,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "A sua semente é importante!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "O seu servidor está no ramo" @@ -7243,7 +7243,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "A semente de geração da sua carteira é:" @@ -7252,12 +7252,12 @@ msgid "Your wallet history has been successfully exported." msgstr "O histórico da sua carteira foi exportado com sucesso." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "A sua carteira não está protegida." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "A sua carteira está encriptada e protegida com palavra-passe." @@ -7270,7 +7270,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Zeros depois do ponto decimal" @@ -7331,7 +7331,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7340,8 +7340,8 @@ msgid "are frozen" msgstr "estão congelados" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "blocos" @@ -7349,8 +7349,8 @@ msgstr "blocos" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7362,7 +7362,7 @@ msgstr "cossignatário" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7378,7 +7378,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7403,7 +7403,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "Por favor, aguarde…" @@ -7438,15 +7438,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "desconhecido" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7467,7 +7467,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "apenas visualização" @@ -7475,7 +7475,7 @@ msgstr "apenas visualização" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7540,15 +7540,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7556,7 +7556,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7564,11 +7564,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7580,23 +7580,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/ro_RO/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/ro_RO/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/ro_RO/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/ro_RO/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/ro_RO/electron-cash.po b/contrib/electrum-locale/locale/ro_RO/vilight.po similarity index 80% rename from contrib/electrum-locale/locale/ro_RO/electron-cash.po rename to contrib/electrum-locale/locale/ro_RO/vilight.po index 234ab8fab..5b95c90f5 100644 --- a/contrib/electrum-locale/locale/ro_RO/electron-cash.po +++ b/contrib/electrum-locale/locale/ro_RO/vilight.po @@ -24,7 +24,7 @@ msgstr " (Curs FX indisponibil)" msgid " These settings affects the fields in the Send tab" msgstr " Setarea aceasta afectează câmpurile din fila Trimitere" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " copiat la clipboard" @@ -37,7 +37,7 @@ msgstr " {} găsite" msgid "%2d minutes" msgstr "%2d minute" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d valabile" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "&Adresă pt. conversie" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Adrese" @@ -293,7 +293,7 @@ msgstr "(Versiuni de ViLight anterior de 3.3.6 creau portofele testnet incorecte msgid "(Only deterministic wallets are supported)" msgstr "(Doar portofele deterministice se pot folosii)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "(Output Script)" @@ -325,7 +325,7 @@ msgstr "({} din {}):" msgid "+" msgstr "+" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "..." @@ -346,7 +346,7 @@ msgstr "o oră" msgid "1 week" msgstr "o săptămână" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr ":" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "O copie din fișierul portofelului a fost creată în" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "Un portofel deterministic va fi creat folosind master private key-ul. Acest portofel va fi capabil să trimită si sa primească Vitae." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "Un portofel va fi creat folosind master public key-ul. Acest portofel va fi numai pentru a monitoriza." @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Un tarif a fost adăugat automat la tranzacţie. Se poate modifica. Cu cât tranzacţia este mai mare, se va mări și tariful." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "Un portofel cu acest nume există. Vă rugăm să introduceţi un nume de portofel diferit." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "Un portofel cu acest nume există. Incercați din nou." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "Un portofel cu acest nume există. Nu se poate continua." @@ -489,12 +489,12 @@ msgstr "Adaugă o tastatură opțională virtuală în fereastra dedicată parol msgid "Add cosigner" msgstr "Adăugă cosemnatar" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "Adaugă portofel" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "Adaugă la Contacte" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "Se adaugă {} din {} adrese noi în portofel..." #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Tarife suplimentare" @@ -521,23 +521,23 @@ msgstr "Se poate să fi vulnerabil la un atac de un om la mijloc." #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adresă" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "Conversie Adrese" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "Detalii Adresă" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "Adresa înghețată" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "Adresa nu ne aparține." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "Adresa pt. conversie" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "După dezactivarea expresii de acces, puteți împerechea acest portofel ViLight doar dacă avea o expresie de acces goală. Dacă expresia de acces nu era goală, va trebuii să creați un portofel nou cu install wizardul. Puteți folosii acest portofel din nou oricând după ce reactivați expresii de acces si reintroduceți expresia lui." -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Toate" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "Toate Tranzacţiile" @@ -603,11 +603,11 @@ msgstr "Toate Tranzacţiile" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "Tot traficul tău către blockchain va fi tranzmis necriptat." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "Totul este în regulă." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "Deja expirat" @@ -619,11 +619,11 @@ msgstr "Deja actualizat" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Suma" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "Suma pentru OP_RETURN trebuie să fie zero." #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Suma primită:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Suma trimisă:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Cantitate de trimis" @@ -671,7 +671,7 @@ msgstr "Eroare trimiterea tranzacției prin rețea" msgid "An uninitialized Digital Bitbox is detected." msgstr "Un Digital Bitbox neinițializat a fost detectat." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "A apărut o eroare necunoscută. Nu se poate proceda." @@ -683,7 +683,7 @@ msgstr "Un anonim {}" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "Oricare" @@ -691,7 +691,7 @@ msgstr "Oricare" msgid "App-Global Options" msgstr "Opțiuni Globale" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Aspect" @@ -718,7 +718,7 @@ msgstr "Sunteți sigur că doriți să procedați?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "Sunteți sigur că doriți să dezinstalați pluginul selectat?" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "Sunteți sigur că doriți să ștergeți acest contact?" @@ -738,7 +738,7 @@ msgstr "Audio MODEM" msgid "Audio Modem Settings" msgstr "Setări Audio Modem" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "Autentificați, vă rog" @@ -796,19 +796,19 @@ msgstr "Secretele BIP39 nu au număr de versiune și astfel compromită compatib #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Inapoi" @@ -816,9 +816,9 @@ msgstr "Inapoi" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Sold" @@ -854,7 +854,7 @@ msgstr "Interziceri (ban-uri) sunt întocmite când ceilalți shuffleri au detec "Se mai întâmplă ocazional. Dacă cumva se întâmplă des, să contactezi developerii că înseamnă că există un bug în acest soft." #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Unitate de bază" @@ -866,7 +866,7 @@ msgstr "Unitatea de bază din portofel." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "Înainte de a reporta o problemă, vă rugăm să actualizați ViLight (ultima versiune emisă sau git HEAD), și să includeți numărul versiunei în raportul întocmit." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "Biometrie Indisponibil" @@ -899,12 +899,12 @@ msgid "Both Receiving & Change (x2)" msgstr "Ambele Primire & Rest (x2)" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Trimite" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Tranzactie pe lungime de unda mare..." @@ -920,7 +920,7 @@ msgstr "CPFP nu mai e valabil" msgid "CSV" msgstr "CSV" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "Se calculează detalii..." @@ -932,41 +932,41 @@ msgstr "Nu se poate fără rețea, CashShuffle se va dezactiva." #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Anulează" @@ -991,7 +991,7 @@ msgstr "Se anulează..." msgid "Cancelled by user" msgstr "Anulat de utilizator" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "Nu se poate șterge" @@ -999,12 +999,12 @@ msgstr "Nu se poate șterge" msgid "Cannot add this cosigner:" msgstr "Nu se poate adăuga acest cosigner:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "Nu se poate afișa această tranzacție fiindcă niciun portofel nu este deschis." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "Nu se poate afișa tranzacția solicitată fiindcă deja avem o fereastră modală deschisă.\n\n" @@ -1018,16 +1018,16 @@ msgstr "Nu se poate găsi codul python pentru" msgid "Cannot read file" msgstr "Fișierul nu poate fi citit" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "Trimitere/primire tranzacții indisponibil." #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "Mesaje nu pot fi semnate cu acest tip de adresă." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "Nu se poate combina chei private și adrese publice in același portofel. Adrese publice crează portofel de observator, iar chei private rezultă întrun portofel normal. Scoateți elementele incompatibile." @@ -1104,7 +1104,7 @@ msgstr "" msgid "Cash Address" msgstr "Adresa Cash" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "Adresă Cash" @@ -1112,7 +1112,7 @@ msgstr "Adresă Cash" msgid "CashAddr" msgstr "CashAddr" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "Format adresă CashAddr" @@ -1196,25 +1196,25 @@ msgid "Chain fork(s) detected" msgstr "Bifurcații lanț detectate" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "Chain împărțit la blocul %d" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Rest" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "Adresă pt. Rest" @@ -1230,8 +1230,8 @@ msgstr "Schimbare PIN" msgid "Change Password" msgstr "Schimbã Parola" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "Schimbă/Setează Parola" @@ -1267,7 +1267,7 @@ msgstr "Copilul plãtește pentru pãrinte" msgid "Child pays for parent" msgstr "Copilul plăteste pentru părinte" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "Alegere Adresă" @@ -1289,7 +1289,7 @@ msgstr "Alegeți fișierul backup:" msgid "Choose a password to encrypt your wallet keys." msgstr "Alegeți o parolã pentru a cripta cheile portofelului." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "Alegeți o adresă / Introduceți un public key" @@ -1331,8 +1331,8 @@ msgstr "Alege ce explorator de blocuri online să fie folosit pentru funcțiile msgid "Choose..." msgstr "Alege..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Eliminã" @@ -1383,7 +1383,7 @@ msgstr "Monedă" msgid "Coin & Address are frozen" msgstr "Monedă & Adresa înghețată" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "Info Monedă" @@ -1416,7 +1416,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "Monede" @@ -1432,7 +1432,7 @@ msgstr "" msgid "Color theme" msgstr "Temă de culori" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "În Curând" @@ -1448,7 +1448,7 @@ msgstr "Con&solă" msgid "Con&tacts" msgstr "Con&tacți" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "Confirmare Ștergere" @@ -1472,7 +1472,7 @@ msgstr "Confirmă Secretul" msgid "Confirm Seed Extension" msgstr "Confirmare Extensie Secret" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "Confirmare Trimitere" @@ -1484,7 +1484,7 @@ msgstr "Confirmare de schimb protecție parolă" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "Confirmă Parola Portofel" @@ -1557,13 +1557,13 @@ msgid "Connected" msgstr "Conectat" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1584,34 +1584,34 @@ msgstr "Eroare de conexiune" msgid "Connections" msgstr "Conexiuni" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "Contact" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "Info Contact" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "Contact adăugat" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "Contact salvat" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Contacte" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "Stăpânițivă cheile private" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "Conversie între adrese CashAddr și Legacy" @@ -1629,10 +1629,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "Copiază adresa" @@ -1657,7 +1657,7 @@ msgstr "Copiază Prevout" msgid "Copy Public Key" msgstr "Copiază Cheia Publică" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "Copie cheia publică" @@ -1665,7 +1665,7 @@ msgstr "Copie cheia publică" msgid "Copy QR Image" msgstr "Copiază Imaginea QR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "Copiază Script-ul" @@ -1685,7 +1685,7 @@ msgstr "Copiază Textul Selectat" msgid "Copy URI" msgstr "Copiază URI-ul" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "Copiază UTXO-ul" @@ -1693,7 +1693,7 @@ msgstr "Copiază UTXO-ul" msgid "Copy and Close" msgstr "Copiazã și Închide" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "Copiază input hash-ul" @@ -1702,8 +1702,8 @@ msgid "Copy link" msgstr "Copiază link-ul" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Copiază în clipboard" @@ -1770,7 +1770,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1778,8 +1778,8 @@ msgstr "" msgid "Create" msgstr "Creare" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "Creare portofel nou Standard" @@ -1787,7 +1787,7 @@ msgstr "Creare portofel nou Standard" msgid "Create a new seed" msgstr "Creare secret nou" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "Creare portofel nou folosind cheie Master" @@ -1823,7 +1823,7 @@ msgstr "" msgid "Custom rate: " msgstr "Tarif customizat: " -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1845,8 +1845,8 @@ msgstr "Întunecat/Luminat" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Data" @@ -1877,15 +1877,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Șterge" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "Șterge Portofel" @@ -1897,12 +1897,12 @@ msgstr "Șterge factura?" msgid "Delete wallet file?" msgstr "Șterge Portofelul?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1910,7 +1910,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1918,22 +1918,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Descriere" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Descrierea tranzacției (neobligatoare)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detalii" @@ -1983,7 +1983,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -2000,7 +2000,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Nu îl salva în mediul electronic." @@ -2032,19 +2032,19 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Vrei sã continui?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "Dorești să urmești ramura {}@{}?" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "Dorești ca progress-banner-ul să fie ascuns?\n" "(Se poate apoi reîntroduce prin Setări)" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" @@ -2052,7 +2052,7 @@ msgstr "Dorești să utilizezi \n" "{}:{}\n" "ca server-ul blockchain?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2072,15 +2072,15 @@ msgstr "" msgid "Download input data" msgstr "Descarcă datele complete" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "Se descarcă Headers" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "Se descarcă blockchain headers..." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "Descărcare headers {}%..." @@ -2096,17 +2096,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "Editare Contact" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Editează tarifele manual" @@ -2120,7 +2120,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2129,7 +2129,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2137,7 +2137,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2161,7 +2161,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2202,7 +2202,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2301,12 +2301,12 @@ msgstr "Criptează" msgid "Encrypt wallet file" msgstr "Criptează fișierul portofelului" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Criptează/decriptează Mesaj" @@ -2330,7 +2330,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2347,10 +2347,10 @@ msgid "Enter Passphrase" msgstr "Introduceți Fraza Secretă" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Introdu parola" @@ -2378,7 +2378,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Introduceți o listă de rezultate în câmpul 'Plătește la'." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2410,11 +2410,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2446,7 +2446,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2477,17 +2477,17 @@ msgid "Enter your password or choose another file." msgstr "Introduceți parola sau alegeți alt fișier." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Introduceți parola pentru a continua" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2506,11 +2506,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Eroare" @@ -2542,7 +2542,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2579,7 +2579,7 @@ msgstr "Exporta istoric" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2592,7 +2592,7 @@ msgid "Extend this seed with custom words" msgstr "Extinde acest secret cu cuvinte personale" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2618,7 +2618,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Eroare la actualizarea parolei" @@ -2627,12 +2627,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Tarif" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "Editare tarif manual" @@ -2650,27 +2650,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Tarife" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Monedă" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Valută" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Fişier" @@ -2691,11 +2691,11 @@ msgid "Fixed rate: " msgstr "Tarif fix: " #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Urmărește această ramură" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2730,8 +2730,8 @@ msgid "Format: address, amount" msgstr "Format: adresa, suma" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "Îngheață" @@ -2773,11 +2773,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "Înghețat" @@ -2789,7 +2789,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2817,24 +2817,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2871,10 +2871,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Înălțime" @@ -2886,11 +2886,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Aceasta este cheia ta publică principală." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2917,8 +2917,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2971,7 +2971,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2992,7 +2992,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3021,7 +3021,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "Daca nu știi despre ce e vorba aici, poți ignora acest element." @@ -3066,12 +3066,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "Dacă vrei să folosești adrese legacy de Bitcoin, poți introduce m/44'/0'/0'" @@ -3088,12 +3088,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3103,14 +3103,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importă" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3118,7 +3118,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3146,19 +3146,19 @@ msgstr "Importă chei private" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3212,8 +3212,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Informaţii" @@ -3238,8 +3238,8 @@ msgstr[1] "" msgstr[2] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Introduce Suma" @@ -3251,7 +3251,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Introduceți tranzacția brută" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Intrări" @@ -3273,8 +3273,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Fonduri insuficiente" @@ -3286,25 +3286,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Adresa invalida" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Suma greșită" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3337,9 +3337,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3348,7 +3348,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3360,7 +3360,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3380,7 +3380,7 @@ msgstr "Facturi" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3493,7 +3493,7 @@ msgstr "Legacy" msgid "Legacy Address" msgstr "Adresa Legacy" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "Adresa 'legacy'" @@ -3533,7 +3533,7 @@ msgstr "Incarcă tranzacție" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3586,12 +3586,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "Tarif manual" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3607,16 +3607,16 @@ msgstr "Cheia publică principală" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Maxim" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Tarif depășit" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "Tarif static maxim" @@ -3653,7 +3653,7 @@ msgid "Minimum coin:" msgstr "Monedă minimă:" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Tarif pt. mineri" @@ -3665,7 +3665,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3689,15 +3689,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "Adresa Mea Rest" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "Adresa Mea de Primire" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3707,12 +3707,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Nume" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3725,11 +3725,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Reţea" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3742,7 +3742,7 @@ msgstr "Starea Rețelei" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Niciodată" @@ -3752,7 +3752,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Nu divulga niciodată secretul." @@ -3761,7 +3761,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Nu il scrie pe un website." @@ -3770,8 +3770,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Contact nou" @@ -3779,19 +3779,19 @@ msgstr "Contact nou" msgid "New Password:" msgstr "Parola Nouă:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Contact nou" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3800,21 +3800,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Pasul următor" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "Nu" @@ -3822,7 +3822,7 @@ msgstr "Nu" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "Fără Potriv." @@ -3838,15 +3838,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Nici un portofel" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3854,7 +3854,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "Fără monede" @@ -3883,7 +3883,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Lipsește mesaj sau suma" @@ -3892,16 +3892,16 @@ msgid "No more addresses in your wallet." msgstr "Nu mai sunt adrese în portofelul tău." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Fără ieșire" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "Nici o adresa de primire" @@ -3913,25 +3913,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "Fără tranzacţii" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Nici unul" @@ -3939,7 +3939,7 @@ msgstr "Nici unul" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3961,8 +3961,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Deconectat" @@ -4019,18 +4019,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Numărul de zerouri afișat după punctul decimal. Spre exemplu, dacă este setat la 2, \"1.\" o să fie afișat ca \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "OK" @@ -4064,11 +4064,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Deconectat" @@ -4103,13 +4103,13 @@ msgstr "" msgid "One output per line." msgstr "O ieșire pe linie." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Explorator de blocuri online" @@ -4137,11 +4137,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4161,12 +4161,12 @@ msgstr "DeschideAlias" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "Înregistrarea OpenAlias, utilizată pentru a primi monede și pentru a semna cereri de plată." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "Se deschide portofelul criptat: '{}'" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "Se deschide{}..." @@ -4179,12 +4179,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Opțiuni" @@ -4193,8 +4193,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4210,7 +4210,7 @@ msgstr "Valoarea ieșirilor" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Ieșiri" @@ -4263,21 +4263,21 @@ msgstr "" msgid "Password" msgstr "Parola" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Puterea Parolei" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Parola este dezactivată, acest portofel nu este protejat" @@ -4292,7 +4292,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Parola a fost actualizată cu succes" @@ -4300,7 +4300,7 @@ msgstr "Parola a fost actualizată cu succes" msgid "Password:" msgstr "Parola:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4326,9 +4326,9 @@ msgid "Pay Now" msgstr "Plătește acum" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Plată către" @@ -4340,21 +4340,21 @@ msgstr "Plătește multiplii" msgid "Payment Request" msgstr "Cerere de plată" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Crerea de plată a expirat" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Plată trimisă." @@ -4383,7 +4383,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4415,7 +4415,7 @@ msgstr "Vă rugăm introduceți cheia publică principală (xpub) a cosemnatarul msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4449,19 +4449,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4482,7 +4482,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "Înregistrează aceste %d cuvinte pe hârtie (ordinea lor este importantă). " @@ -4495,7 +4495,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Vă rugăm să o împărtășiți cosemnatarilor." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4519,8 +4519,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Așteaptă te rog" @@ -4538,7 +4538,7 @@ msgstr "Așteaptă te rog..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4571,7 +4571,7 @@ msgid "Pool size" msgstr "Mărime grup" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4579,7 +4579,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4608,7 +4608,7 @@ msgstr "Apasă 'Următorul' pentru a deschide acest portofel." msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Previzualizare" @@ -4616,14 +4616,14 @@ msgstr "Previzualizare" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Cheie privată" @@ -4640,7 +4640,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Continuați?" @@ -4685,7 +4685,7 @@ msgid "Proxy user" msgstr "Utilizator Proxy" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Cheie publică" @@ -4697,10 +4697,10 @@ msgstr "Chei publice" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4709,9 +4709,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "Cod QR" @@ -4739,7 +4739,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4785,8 +4785,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Primește" @@ -4799,13 +4799,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "Primire" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "Adresa de Primire" @@ -4813,7 +4813,7 @@ msgstr "Adresa de Primire" msgid "Receiving Addresses Only" msgstr "Doar Adrese de Primire" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Adresa destinatarului" @@ -4826,11 +4826,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Răscumpărare script" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4852,10 +4852,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Elimină" @@ -4877,20 +4877,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4902,17 +4902,17 @@ msgstr "Raportează erorile" msgid "Request &expires" msgstr "Solicitarea &expiră" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Solicitarea expiră" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4928,7 +4928,7 @@ msgstr "" msgid "Requested &amount" msgstr "Sum&a solicitată" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Suma solicitată" @@ -4936,8 +4936,8 @@ msgstr "Suma solicitată" msgid "Requestor" msgstr "Solicitantul" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Cereri" @@ -4970,8 +4970,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5015,13 +5015,13 @@ msgstr "Certificat SSL folosit pentru a semna cererile de plată." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Salvează" @@ -5029,8 +5029,8 @@ msgstr "Salvează" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5046,7 +5046,7 @@ msgstr "Salvează factura în fișier" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5075,7 +5075,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5093,11 +5093,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5110,8 +5110,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Secret" @@ -5119,7 +5119,7 @@ msgstr "Secret" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5179,7 +5179,7 @@ msgstr "Selectează automat serverul" msgid "Select server manually" msgstr "Selectează server manual" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5204,9 +5204,9 @@ msgid "Select your transaction file" msgstr "Alege fişierul tranzacţiei" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Trimite" @@ -5238,7 +5238,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5251,7 +5251,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5272,7 +5272,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5308,46 +5308,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Setări" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Arată" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5355,20 +5355,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "Arată soldul Fiat pentru adrese" @@ -5384,14 +5384,14 @@ msgstr "" msgid "Show QR Code" msgstr "Arată Codul OR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Arată cod-ul QR" @@ -5404,11 +5404,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Arată ratele din istoric" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5483,7 +5483,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Semnează" @@ -5491,12 +5491,12 @@ msgstr "Semnează" msgid "Sign all transactions using Schnorr signatures." msgstr "Semnează toate tranzacțiile cu algoritma Schnorr." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Semnează/verifică Mesaj" @@ -5509,7 +5509,7 @@ msgid "Signature" msgstr "Semnătură" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Semnătură verificată" @@ -5530,17 +5530,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Se semnează tranzacția..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Mărime:" @@ -5554,12 +5554,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5568,11 +5568,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Sursă" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5585,11 +5585,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5605,20 +5605,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Cheltuiește doar monedele confirmate" @@ -5642,7 +5642,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5657,15 +5657,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Stare" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Stare:" @@ -5674,10 +5674,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Succes" @@ -5705,13 +5705,13 @@ msgstr "Trage cheile private" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Sincronizare..." @@ -5723,27 +5723,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5773,18 +5773,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5805,10 +5805,10 @@ msgstr "Tariful poate fi ales de expeditor. Însă, tranzacţiile cu tarife scă msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Suma va fi afişată în roşu dacă nu ai suficiente fonduri în portofel." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5859,7 +5859,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5868,11 +5868,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5924,20 +5924,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5949,7 +5949,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5965,7 +5965,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6040,7 +6040,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6066,11 +6066,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Acest blockchain este folosit pentru a verifica tranzacția trimisă de serverul de tranzacții." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6103,17 +6103,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Acest portofel poate fi doar văzut" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6122,7 +6122,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Aceasta este înălțimea copiei tale locale din blockchain." @@ -6131,12 +6131,12 @@ msgid "This may result in higher transactions fees." msgstr "Aceasta ar putea duce la tarife ridicate ale tranzacției." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Cererea de plată o să fie semnată." @@ -6144,14 +6144,14 @@ msgstr "Cererea de plată o să fie semnată." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "Această solicitare expiră: {}" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Aceste cuvinte secrete iţi vor permite să recuperezi portofelul in caz de probleme cu calculatorul." @@ -6167,7 +6167,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6177,7 +6177,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "Această căsuța traduce formatele de adrese Vitae. Ești încurajat să folosești formatul 'Cash Address' în loc de cel vechi numit 'Legacy'." @@ -6190,7 +6190,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Această tranzacţie nu este salvată. Închide oricum?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6198,16 +6198,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Acest portofel nu are cuvinte secrete" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6246,30 +6246,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Pentru a asigura că ai salvat secretul, introdu-l aici." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6289,9 +6289,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "Schimbă Formatul" @@ -6315,7 +6315,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6323,25 +6323,25 @@ msgstr "" msgid "Total size" msgstr "Mărime totală" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Tranzactie" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6350,20 +6350,20 @@ msgid "Transaction ID" msgstr "ID-ul tranzacţiei" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID-ul tranzacţiei:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6379,7 +6379,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6392,8 +6392,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Tranzacție fără legătură cu portofelul dumneavoastră" @@ -6406,9 +6406,9 @@ msgid "Transaction:" msgstr "Tranzacție:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Tranzacții" @@ -6429,11 +6429,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6442,8 +6442,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6467,7 +6467,7 @@ msgstr "Imposibil de creat csv" msgid "Unable to export history" msgstr "Imposibil de exportat istoricul" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6523,8 +6523,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "Dezgheață" @@ -6550,16 +6550,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Necunoscut" @@ -6567,7 +6567,7 @@ msgstr "Necunoscut" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6575,7 +6575,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6587,7 +6587,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6607,7 +6607,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6639,12 +6639,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Folosește Proxy Tor" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6653,18 +6653,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Folosește-l ca și server" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Schimbă adresele" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Folosește mai multe adrese pt. rest" @@ -6680,24 +6680,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Folosește configurarea setărilor pentru a seta ssl_chain și ssl_privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Folosește această căsuță pentru a adăuga o parolă portofelului tău." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Folosește această căsuță pentru a-ți schimba parola." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6717,7 +6717,7 @@ msgstr "Folosirea adreselor de rest face mai dificilă urmărirea tranzacțiilor msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6730,7 +6730,7 @@ msgstr "" msgid "Verify" msgstr "Verificare" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6786,11 +6786,11 @@ msgstr "Vizualizare Factură" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Vizualizează pe explorator de blocuri" @@ -6806,7 +6806,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6815,7 +6815,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "AVERTISMENT" @@ -6843,22 +6843,22 @@ msgstr "Portofel" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6866,11 +6866,11 @@ msgstr "" msgid "Wallet backup created" msgstr "Copia de rezervă a portofelului a fost creată" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6886,15 +6886,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6902,7 +6902,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6910,7 +6910,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6943,11 +6943,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6996,32 +6996,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Semnătură greșită" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "Da" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7031,7 +7031,7 @@ msgid "You are already on the latest version of ViLight." msgstr "Deja ai cea mai actuală versiune de ViLight." #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Urmăriți branch" @@ -7048,11 +7048,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7072,7 +7072,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7080,11 +7080,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7096,11 +7096,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7127,7 +7127,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7147,7 +7147,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7155,7 +7155,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7176,13 +7176,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "Conturile dumneavoastră au fost mutate la" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Monedele tale Bitcoin sunt protejate de o parolă. Însă, fișierul portofelului tău nu este criptat." @@ -7203,7 +7203,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "Tariful e prea mare. 500 sat/byte este maximul." @@ -7219,7 +7219,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7232,7 +7232,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "Extensia secretului este" @@ -7241,12 +7241,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Cuvintele secrete sunt importante!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Severul tău este pe branch" @@ -7259,7 +7259,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Cuvintele secrete pentru portofelul tău sunt:" @@ -7268,12 +7268,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Istoricul portofelului tău a fost exportat cu succes." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Portofelul dumneavoastră nu este protejat." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Parola portofelului este protejată și criptată." @@ -7286,7 +7286,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Zerouri după virgulă" @@ -7347,7 +7347,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7356,8 +7356,8 @@ msgid "are frozen" msgstr "sunt înghețate" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "blocuri" @@ -7365,8 +7365,8 @@ msgstr "blocuri" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7378,7 +7378,7 @@ msgstr "cosemnatar" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7394,7 +7394,7 @@ msgstr "tarif" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7419,7 +7419,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "așteaptă..." @@ -7454,15 +7454,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "necunoscut" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "necunoscut (tarif mic)" @@ -7483,7 +7483,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "doar de văzut" @@ -7491,7 +7491,7 @@ msgstr "doar de văzut" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7558,15 +7558,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7574,7 +7574,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7582,11 +7582,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7598,23 +7598,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/ru_RU/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/ru_RU/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/ru_RU/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/ru_RU/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/ru_RU/electron-cash.po b/contrib/electrum-locale/locale/ru_RU/vilight.po similarity index 80% rename from contrib/electrum-locale/locale/ru_RU/electron-cash.po rename to contrib/electrum-locale/locale/ru_RU/vilight.po index bea31985e..a1b72c348 100644 --- a/contrib/electrum-locale/locale/ru_RU/electron-cash.po +++ b/contrib/electrum-locale/locale/ru_RU/vilight.po @@ -24,7 +24,7 @@ msgstr " (Курсы валют недоступны)" msgid " These settings affects the fields in the Send tab" msgstr " Эти настройки влияют на поля во вкладке Отправка" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " copied to clipboard" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d мин." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Адреса" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 час" msgid "1 week" msgstr "1 неделя" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Копия вашего кошелька была создана в" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Предлагаемый размер комиссии автоматически добавляется в это поле. Вы можете переопределить его. Он увеличивается вместе с размером транзакции." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "Добавить поручителя" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Дополнительные комиссии" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Адрес" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "Адрес отсутствует в кошельке." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Все" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Сумма" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Полученная сумма:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Потраченная сумма:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Сумма к отправке" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "Безимянный" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Основные" @@ -717,7 +717,7 @@ msgstr "Вы хотите продолжить?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Обратно" @@ -815,9 +815,9 @@ msgstr "Обратно" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Баланс" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Валюта" @@ -864,7 +864,7 @@ msgstr "Валюта вашего кошелька" msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Разослать" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Рассылка транзакции..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "CSV (значения, разделённые запятыми)" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Отмена" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "Отменено пользователем" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "Не могу добавить этого подписанта:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "Не удается найти библиотеку python для" msgid "Cannot read file" msgstr "Не удаётся прочесть файл" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Сдача" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "Изменить PIN" msgid "Change Password" msgstr "Сменить пароль" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "Потомок Платит за Родителя" msgid "Child pays for parent" msgstr "Потомок платит за родителя" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "Выберите резервную копию:" msgid "Choose a password to encrypt your wallet keys." msgstr "Выберите пароль для шифрования ключей Вашего кошелька." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Выберите онлайн обозреватель блоков, к msgid "Choose..." msgstr "Выбрать..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Очистить" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "&Консоль" msgid "Con&tacts" msgstr "Кон&такты" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "Подтверждение seed" msgid "Confirm Seed Extension" msgstr "Подтвердить расширение секретной фразы (seed)" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Контакты" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Копировать URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "Копировать и закрыть" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Скопировать в буфер обмена" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "Создать" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "Темно/Светло" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Дата" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Удалить" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "Удалить счёт?" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Описание" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Описание транзакции (не обязательно)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Подробности" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Не храните в электронном виде." @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Вы хотите продолжить?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Указать комиссию вручную" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Зашифровать" msgid "Encrypt wallet file" msgstr "Зашифрованный файл кошелька" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Зашифровать/расшифровать Сообщение" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Введите кодовую фразу" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Введите пароль" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Введите список выходов в поле «Платить»." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "Введите свой пароль или выберите другой файл." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Введите свой пароль для продолжения" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Ошибка" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Экспорт истории" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "Расширить этот seed при помощи пользовательских слов" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Не удалось обновить пароль" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Комиссия" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Комиссии" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Валюта" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Текущая валюта" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Файл" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Следить за этой веткой" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "Формат: адрес, сумма" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Рост" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Ваш главный открытый ключ." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Хост" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Импортировать" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Импортировать приватные ключи" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Информация" @@ -3227,8 +3227,8 @@ msgstr[2] "" msgstr[3] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Входящая сумма" @@ -3240,7 +3240,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Ввести raw-транзакцию" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Ввод" @@ -3262,8 +3262,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Недостаточно средств" @@ -3275,25 +3275,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Неверный адрес" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Неверная сумма" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3326,9 +3326,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3337,7 +3337,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3349,7 +3349,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3369,7 +3369,7 @@ msgstr "Счета" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3482,7 +3482,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3522,7 +3522,7 @@ msgstr "Загрузить транзакцию" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3575,12 +3575,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3596,16 +3596,16 @@ msgstr "Публичные мастер-ключи" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Максимум" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Превышена максимальная комиссия" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3642,7 +3642,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Комиссия майнера" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3678,15 +3678,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3696,12 +3696,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Имя" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3714,11 +3714,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Сеть" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3731,7 +3731,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Никогда" @@ -3741,7 +3741,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Ни кому не рассказывайте про свой seed." @@ -3750,7 +3750,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Никогда не вводите его ни на каких сайтах." @@ -3759,8 +3759,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Новый контакт" @@ -3768,19 +3768,19 @@ msgstr "Новый контакт" msgid "New Password:" msgstr "Новый пароль:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Новый контакт" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3789,21 +3789,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Дальше" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3811,7 +3811,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3827,15 +3827,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Нет кошельков" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3843,7 +3843,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3872,7 +3872,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Нет сообщений или количества" @@ -3881,16 +3881,16 @@ msgid "No more addresses in your wallet." msgstr "В вашем кошельке нету больше адресов." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Нет результатов" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3902,25 +3902,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "(Пусто)" @@ -3928,7 +3928,7 @@ msgstr "(Пусто)" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3950,8 +3950,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Не подключено" @@ -4008,18 +4008,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Количество десятичных нулей, отображаемых после запятой. Например, если указано значение 2, то \"1.\" будет отображаться как \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "ОК" @@ -4054,11 +4054,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Не в сети" @@ -4093,13 +4093,13 @@ msgstr "" msgid "One output per line." msgstr "Один выход на строку." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Онлайновый проводник по блокам" @@ -4127,11 +4127,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4151,12 +4151,12 @@ msgstr "OpenAlias (открытый псевдоним)" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "Запись OpenAlias (открытый псевдоним), используемая для получения монет и подписывания платежных запросов." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4169,12 +4169,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Опции" @@ -4183,8 +4183,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4201,7 +4201,7 @@ msgstr "Выходящая сумма" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Вывод" @@ -4254,21 +4254,21 @@ msgstr "" msgid "Password" msgstr "Пароль" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Надежность пароля" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Пароль отключен, данный кошелёк не защищён" @@ -4283,7 +4283,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Пароль успешно обновлён" @@ -4291,7 +4291,7 @@ msgstr "Пароль успешно обновлён" msgid "Password:" msgstr "Пароль:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4317,9 +4317,9 @@ msgid "Pay Now" msgstr "Оплатить сейчас" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Получатель" @@ -4331,21 +4331,21 @@ msgstr "Оплатить нескольким" msgid "Payment Request" msgstr "Запрос платежа" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Запрос оплаты истекло" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Платёж отправлен." @@ -4374,7 +4374,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4406,7 +4406,7 @@ msgstr "Пожалуйста, введите главный открытый к msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4440,19 +4440,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4473,7 +4473,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4486,7 +4486,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Пожалуйста, поделитесь со своими друзьями." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4510,8 +4510,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Пожалуйста, подождите" @@ -4529,7 +4529,7 @@ msgstr "Пожалуйста, подождите..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4562,7 +4562,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Порт" @@ -4570,7 +4570,7 @@ msgstr "Порт" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4599,7 +4599,7 @@ msgstr "Нажмите \"Далее\", чтобы открыть этот кош msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Предпросмотр" @@ -4607,14 +4607,14 @@ msgstr "Предпросмотр" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Закрытый ключ" @@ -4631,7 +4631,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Продолжить?" @@ -4676,7 +4676,7 @@ msgid "Proxy user" msgstr "Пользователь прокси" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Открытый ключ" @@ -4688,10 +4688,10 @@ msgstr "Публичные ключи" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4700,9 +4700,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR-код" @@ -4730,7 +4730,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4776,8 +4776,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Получение" @@ -4790,13 +4790,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4804,7 +4804,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Адрес получателя" @@ -4817,11 +4817,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4843,10 +4843,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Удалить" @@ -4868,20 +4868,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4893,17 +4893,17 @@ msgstr "Сообщить об ошибках" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Запрос просрочен" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4919,7 +4919,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Запрашиваемая сумма" @@ -4927,8 +4927,8 @@ msgstr "Запрашиваемая сумма" msgid "Requestor" msgstr "Запрашивающий" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Запросы" @@ -4961,8 +4961,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5006,13 +5006,13 @@ msgstr "SSL-сертификат используется для подписи msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Сохранить" @@ -5020,8 +5020,8 @@ msgstr "Сохранить" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5037,7 +5037,7 @@ msgstr "Сохранить счёт в файл" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5066,7 +5066,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5084,11 +5084,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5101,8 +5101,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5110,7 +5110,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5170,7 +5170,7 @@ msgstr "Выбрать сервер автоматически" msgid "Select server manually" msgstr "Выбрать сервер вручную" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5195,9 +5195,9 @@ msgid "Select your transaction file" msgstr "Выберите ваш файл транзакции" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Отправка" @@ -5229,7 +5229,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5242,7 +5242,7 @@ msgstr "Сервер" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5263,7 +5263,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5299,46 +5299,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Настройки" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Показать" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5346,20 +5346,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5375,14 +5375,14 @@ msgstr "" msgid "Show QR Code" msgstr "Показать QR код" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Показать QR код" @@ -5395,11 +5395,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Показать историю курсов" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5474,7 +5474,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Подписать" @@ -5482,12 +5482,12 @@ msgstr "Подписать" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Подписать/подтвердить сообщение" @@ -5500,7 +5500,7 @@ msgid "Signature" msgstr "Подпись" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Подпись подтверждена" @@ -5521,17 +5521,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Подписывание транзакции..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Размер:" @@ -5545,12 +5545,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5559,11 +5559,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Источник" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5576,11 +5576,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5596,20 +5596,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Тратить только подтверждённые монеты" @@ -5633,7 +5633,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5648,15 +5648,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Статус" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Статус:" @@ -5665,10 +5665,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Успешно" @@ -5696,13 +5696,13 @@ msgstr "Импорт приватных ключей" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Синхронизация..." @@ -5714,27 +5714,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5764,18 +5764,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5796,10 +5796,10 @@ msgstr "Размер комиссии свободно определяется msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Сумма будет отображаться красным цветом, если на Вашем кошельке недостаточно средств." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5850,7 +5850,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5859,11 +5859,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5915,20 +5915,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5940,7 +5940,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5956,7 +5956,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6031,7 +6031,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6057,11 +6057,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Эта цепочка блоков используется для проверки транзакций, которые присылает ваш сервер транзакций." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6094,17 +6094,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Этот кошелёк только для наблюдения" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6113,7 +6113,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Це довжина Вашої копії ланцюжка блоків." @@ -6122,12 +6122,12 @@ msgid "This may result in higher transactions fees." msgstr "Это может привести к увеличению комиссии за транзакции." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Этот запрос платежа был подписан." @@ -6135,14 +6135,14 @@ msgstr "Этот запрос платежа был подписан." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Этот seed поможет вам восстановить ваш кошелёк в случае проблем с компьютером." @@ -6158,7 +6158,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6168,7 +6168,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6181,7 +6181,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Эта транзакция не сохранена. Закрыть?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6189,16 +6189,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Этот кошелёк без seed" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6237,30 +6237,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Чтобы убедиться, что Вы как следует сохранили Ваш seed, пожалуйста, введите его." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6280,9 +6280,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6306,7 +6306,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6314,25 +6314,25 @@ msgstr "" msgid "Total size" msgstr "Общий размер" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Транзакция" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6341,20 +6341,20 @@ msgid "Transaction ID" msgstr "ID транзакции" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "Идентификатор транзакции:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6370,7 +6370,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6383,8 +6383,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Транзакция не связана с Вашим кошельком" @@ -6397,9 +6397,9 @@ msgid "Transaction:" msgstr "Транзакция:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Транзакции" @@ -6420,11 +6420,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6433,8 +6433,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6458,7 +6458,7 @@ msgstr "Не удалось создать CSV" msgid "Unable to export history" msgstr "Невозможно экспортировать историю" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6514,8 +6514,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6541,16 +6541,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Неизвестно" @@ -6558,7 +6558,7 @@ msgstr "Неизвестно" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6566,7 +6566,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6578,7 +6578,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6598,7 +6598,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6630,12 +6630,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Использовать Tor прокси" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6644,18 +6644,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Использовать в качестве сервера" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Использовать адреса для сдачи" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Использовать изменяющиеся адреса" @@ -6671,24 +6671,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Использовать setconfig для установки ssl_chain и ssl_privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Используйте этот диалог для задания пароля к вашему кошельку." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Используйте это диалоговое окно чтобы изменить свой пароль." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6708,7 +6708,7 @@ msgstr "Использование адресов для сдачи усложн msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6721,7 +6721,7 @@ msgstr "" msgid "Verify" msgstr "Подтвердить" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6779,11 +6779,11 @@ msgstr "Просмотр счёта" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Просмотр в обозревателе блоков" @@ -6799,7 +6799,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6808,7 +6808,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "ВНИМАНИЕ" @@ -6836,22 +6836,22 @@ msgstr "Кошелёк" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6859,11 +6859,11 @@ msgstr "" msgid "Wallet backup created" msgstr "Резервная копия кошелька создана" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6879,15 +6879,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6895,7 +6895,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6903,7 +6903,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6936,11 +6936,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6989,32 +6989,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Неправильная подпись" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7024,7 +7024,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Вы подписаны на ветку" @@ -7041,11 +7041,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7065,7 +7065,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7073,11 +7073,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7089,11 +7089,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7120,7 +7120,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7140,7 +7140,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7148,7 +7148,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7169,13 +7169,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "Ваши аккаунты были перемещены в" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Ваши биткойны защищены паролем, но ваш кошелёк не зашифрован." @@ -7196,7 +7196,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7212,7 +7212,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7225,7 +7225,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "Ваш расширенный seed:" @@ -7234,12 +7234,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Ваш seed - это важно!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Ваш частный сервер" @@ -7252,7 +7252,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Seed вашего кошелька:" @@ -7261,12 +7261,12 @@ msgid "Your wallet history has been successfully exported." msgstr "История вашего кошелька успешно экспортирована." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Ваш кошелёк не защищен." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Ваш кошелёк защищен паролем и зашифрован." @@ -7279,7 +7279,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Ноль после десятичной точки" @@ -7340,7 +7340,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7349,8 +7349,8 @@ msgid "are frozen" msgstr "заморожены" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "блоки" @@ -7358,8 +7358,8 @@ msgstr "блоки" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7371,7 +7371,7 @@ msgstr "поручитель" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7387,7 +7387,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7412,7 +7412,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "пожалуйста, подождите..." @@ -7447,15 +7447,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "неизвестно" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7476,7 +7476,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "только для просмотра" @@ -7484,7 +7484,7 @@ msgstr "только для просмотра" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7553,15 +7553,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7569,7 +7569,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7577,11 +7577,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7593,23 +7593,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/sk_SK/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/sk_SK/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/sk_SK/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/sk_SK/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/sk_SK/electron-cash.po b/contrib/electrum-locale/locale/sk_SK/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/sk_SK/electron-cash.po rename to contrib/electrum-locale/locale/sk_SK/vilight.po index 3181bb451..c364af6eb 100644 --- a/contrib/electrum-locale/locale/sk_SK/electron-cash.po +++ b/contrib/electrum-locale/locale/sk_SK/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "adresy su ok" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "" msgid "1 week" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Kópia vašej peňaženky bola vytvorená v" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Navrhnutý poplatok sa automaticky pridáva k tomuto poľu. Môžete to prepísať. Navrhovaný poplatok sa zväčšuje s veľkosťou transakcie." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adresa" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Čiastka" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Obdržaná čiastka:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Odoslaná čiastka:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "" @@ -815,9 +815,9 @@ msgstr "" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Zostatok" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Základná jednotka" @@ -864,7 +864,7 @@ msgstr "Základná jednotka vašej peňaženky." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Zverejniť" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "" @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Zrušiť" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Vyberte online průzkumník bloků k používání pro funkce, které ot msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Vymazať" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Kontakty" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Kopírovať do schránky" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Dátum" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Odstrániť" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Popis" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Popis transakcie (nepovinné)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detaily" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Šifrovať" msgid "Encrypt wallet file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Šifrovať/dešifrovať správu" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Zadajte Heslo" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Chyba" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Exportovať Históriu" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Nepodarilo sa aktualizovať heslo" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Poplatok" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Súbor" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importovať" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Importovať súkromné kľúče" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Informácie" @@ -3227,8 +3227,8 @@ msgstr[2] "" msgstr[3] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3240,7 +3240,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Vloziť Raw transakciu" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Vstupy" @@ -3262,8 +3262,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Nemáte dostatočnú sumu" @@ -3275,25 +3275,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Neplatná adresa" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Neplatné množstvo" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3326,9 +3326,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3337,7 +3337,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3349,7 +3349,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3369,7 +3369,7 @@ msgstr "Faktúry" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3482,7 +3482,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3522,7 +3522,7 @@ msgstr "Načítať transakciu" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3575,12 +3575,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3596,16 +3596,16 @@ msgstr "Hlavné verejné kľúče" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3642,7 +3642,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3678,15 +3678,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3696,12 +3696,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Meno" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3714,11 +3714,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Sieť" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3731,7 +3731,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "" @@ -3741,7 +3741,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3750,7 +3750,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3759,8 +3759,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Nový kontakt" @@ -3768,19 +3768,19 @@ msgstr "Nový kontakt" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Nový kontakt" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3789,21 +3789,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Ďalej" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3811,7 +3811,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3827,15 +3827,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3843,7 +3843,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3872,7 +3872,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Žiadna správa alebo suma" @@ -3881,16 +3881,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Žiadne výstupy" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3902,25 +3902,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3928,7 +3928,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3950,8 +3950,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Nepripojené" @@ -4008,18 +4008,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Počet núl za desatinnou čiarkou. Napr, ak je to nastavené na 2, \"1\" bude zobrazené ako \"1,00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4054,11 +4054,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4093,13 +4093,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Online Prehliadač Blokov" @@ -4127,11 +4127,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4151,12 +4151,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4169,12 +4169,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4183,8 +4183,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4201,7 +4201,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Výstupy" @@ -4254,21 +4254,21 @@ msgstr "" msgid "Password" msgstr "Heslo" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Prekonateľnosť hesla" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4283,7 +4283,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Heslo bolo úspešne aktualizované" @@ -4291,7 +4291,7 @@ msgstr "Heslo bolo úspešne aktualizované" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4317,9 +4317,9 @@ msgid "Pay Now" msgstr "Zaplatiť teraz" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Príjemca" @@ -4331,21 +4331,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Požiadavka na platbu expirovala" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Platba odoslaná." @@ -4374,7 +4374,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4406,7 +4406,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4440,19 +4440,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4473,7 +4473,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4486,7 +4486,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4510,8 +4510,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4529,7 +4529,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4562,7 +4562,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4570,7 +4570,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4599,7 +4599,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4607,14 +4607,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Súkromný kľúč" @@ -4631,7 +4631,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4676,7 +4676,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Verejný kľúč" @@ -4688,10 +4688,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4700,9 +4700,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR kód" @@ -4730,7 +4730,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4776,8 +4776,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Prijať" @@ -4790,13 +4790,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4804,7 +4804,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Príjmacia adresa" @@ -4817,11 +4817,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4843,10 +4843,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Odstrániť" @@ -4868,20 +4868,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4893,17 +4893,17 @@ msgstr "Nahlasovanie problémov" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4919,7 +4919,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Vyžiadaná suma" @@ -4927,8 +4927,8 @@ msgstr "Vyžiadaná suma" msgid "Requestor" msgstr "Žiadateľ" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4961,8 +4961,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5006,13 +5006,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Uložiť" @@ -5020,8 +5020,8 @@ msgstr "Uložiť" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5037,7 +5037,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5066,7 +5066,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5084,11 +5084,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5101,8 +5101,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5110,7 +5110,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5170,7 +5170,7 @@ msgstr "" msgid "Select server manually" msgstr "Zvoliť server ručne" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5195,9 +5195,9 @@ msgid "Select your transaction file" msgstr "Zvoľte váš súbor transakcie" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Odoslať" @@ -5229,7 +5229,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5242,7 +5242,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5263,7 +5263,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5299,46 +5299,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Nastavenia" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5346,20 +5346,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5375,14 +5375,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5395,11 +5395,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5474,7 +5474,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Podpísať" @@ -5482,12 +5482,12 @@ msgstr "Podpísať" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Podpísať/overiť správu" @@ -5500,7 +5500,7 @@ msgid "Signature" msgstr "Podpis" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Podpis overený" @@ -5521,17 +5521,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5545,12 +5545,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5559,11 +5559,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5576,11 +5576,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5596,20 +5596,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5633,7 +5633,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5648,15 +5648,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Status: " @@ -5665,10 +5665,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Úspešné" @@ -5696,13 +5696,13 @@ msgstr "Vymiesť súkromné kľúče" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Synchronizácia..." @@ -5714,27 +5714,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5764,18 +5764,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5796,10 +5796,10 @@ msgstr "Výšku poplatku môže zvoliť sám odosielateľ. Spracovanie transakci msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5850,7 +5850,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5859,11 +5859,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5915,20 +5915,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5940,7 +5940,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5956,7 +5956,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6031,7 +6031,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6057,11 +6057,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6094,17 +6094,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Toto je peňaženka len pre čítanie" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6113,7 +6113,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6122,12 +6122,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6135,14 +6135,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Tento zdroj vám umožní obnoviť vašu peňaženku v prípade poruchy počítača." @@ -6158,7 +6158,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6168,7 +6168,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6181,7 +6181,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6189,16 +6189,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Táto peňaženka nemá zdroj" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6237,30 +6237,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Aby sme sa uistili že ste si riadne uložili zdroj, prosím opíšte ho sem." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6280,9 +6280,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6306,7 +6306,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6314,25 +6314,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transakcia" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6341,20 +6341,20 @@ msgid "Transaction ID" msgstr "ID transakcie" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "ID transakcie:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6370,7 +6370,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6383,8 +6383,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Transakcia nesúvisiaca s vašou peňaženkou" @@ -6397,9 +6397,9 @@ msgid "Transaction:" msgstr "Transakcia:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "" @@ -6420,11 +6420,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6433,8 +6433,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6458,7 +6458,7 @@ msgstr "Nepodarilo sa vytvoriť CSV" msgid "Unable to export history" msgstr "Neschopný exportovať históriu" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6514,8 +6514,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6541,16 +6541,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6558,7 +6558,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6566,7 +6566,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6578,7 +6578,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6598,7 +6598,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6630,12 +6630,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6644,18 +6644,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Použiť adresu pre výdavok" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6671,24 +6671,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6708,7 +6708,7 @@ msgstr "Použitie adresy pre výdavok sťažuje druhým ľuďom sledovanie vaši msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6721,7 +6721,7 @@ msgstr "" msgid "Verify" msgstr "Overiť" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6779,11 +6779,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Pozrieť v prieskumníkovi blokov" @@ -6799,7 +6799,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6808,7 +6808,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "VAROVANIE" @@ -6836,22 +6836,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6859,11 +6859,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6879,15 +6879,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6895,7 +6895,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6903,7 +6903,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6934,11 +6934,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6987,32 +6987,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7022,7 +7022,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7039,11 +7039,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7063,7 +7063,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7071,11 +7071,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7087,11 +7087,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7118,7 +7118,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7138,7 +7138,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7146,7 +7146,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7167,13 +7167,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7194,7 +7194,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7210,7 +7210,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7223,7 +7223,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7232,12 +7232,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Váš seed je dôležitý!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7250,7 +7250,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7259,12 +7259,12 @@ msgid "Your wallet history has been successfully exported." msgstr "História vašej peňaženky bola úspešne exportovaná." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7277,7 +7277,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Nula za desatinnou čiarkou" @@ -7338,7 +7338,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7347,8 +7347,8 @@ msgid "are frozen" msgstr "sú zmrazené" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7356,8 +7356,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7369,7 +7369,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7385,7 +7385,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7410,7 +7410,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "Počkajte prosím..." @@ -7445,15 +7445,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "neznámy" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7474,7 +7474,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "len" @@ -7482,7 +7482,7 @@ msgstr "len" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7551,15 +7551,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7567,7 +7567,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7575,11 +7575,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7591,23 +7591,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/sl_SI/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/sl_SI/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/sl_SI/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/sl_SI/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/sl_SI/electron-cash.po b/contrib/electrum-locale/locale/sl_SI/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/sl_SI/electron-cash.po rename to contrib/electrum-locale/locale/sl_SI/vilight.po index dcf099a05..6018d9ae9 100644 --- a/contrib/electrum-locale/locale/sl_SI/electron-cash.po +++ b/contrib/electrum-locale/locale/sl_SI/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 ura" msgid "1 week" msgstr "1 teden" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Naslov" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Znesek" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "" @@ -815,9 +815,9 @@ msgstr "" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Stanje" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "" @@ -864,7 +864,7 @@ msgstr "" msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "" @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "" msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Opis" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "" #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "" msgid "Encrypt wallet file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Napaka" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Provizija" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3227,8 +3227,8 @@ msgstr[2] "" msgstr[3] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3240,7 +3240,7 @@ msgstr "" msgid "Input raw transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "" @@ -3262,8 +3262,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3275,25 +3275,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Neveljaven naslov" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Neveljaven znesek" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3326,9 +3326,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3337,7 +3337,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3349,7 +3349,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3369,7 +3369,7 @@ msgstr "" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3482,7 +3482,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3522,7 +3522,7 @@ msgstr "" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3575,12 +3575,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3596,16 +3596,16 @@ msgstr "" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3642,7 +3642,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3678,15 +3678,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3696,12 +3696,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3714,11 +3714,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3731,7 +3731,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "" @@ -3741,7 +3741,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3750,7 +3750,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3759,8 +3759,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Nov kontakt" @@ -3768,19 +3768,19 @@ msgstr "Nov kontakt" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3789,21 +3789,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3811,7 +3811,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3827,15 +3827,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3843,7 +3843,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3872,7 +3872,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "" @@ -3881,16 +3881,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3902,25 +3902,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3928,7 +3928,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3950,8 +3950,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Niste povezani" @@ -4008,18 +4008,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Število decimalk" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "V redu" @@ -4054,11 +4054,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4093,13 +4093,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4127,11 +4127,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4151,12 +4151,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4169,12 +4169,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4183,8 +4183,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4201,7 +4201,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "" @@ -4254,21 +4254,21 @@ msgstr "" msgid "Password" msgstr "Geslo" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4283,7 +4283,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "" @@ -4291,7 +4291,7 @@ msgstr "" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4317,9 +4317,9 @@ msgid "Pay Now" msgstr "" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Prejemnik" @@ -4331,21 +4331,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Nakazilo je poslano." @@ -4374,7 +4374,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4406,7 +4406,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4440,19 +4440,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4473,7 +4473,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4486,7 +4486,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4510,8 +4510,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4529,7 +4529,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4562,7 +4562,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4570,7 +4570,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4599,7 +4599,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4607,14 +4607,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "" @@ -4631,7 +4631,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4676,7 +4676,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "" @@ -4688,10 +4688,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4700,9 +4700,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "" @@ -4730,7 +4730,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4776,8 +4776,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Prejmi" @@ -4790,13 +4790,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4804,7 +4804,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "" @@ -4817,11 +4817,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4843,10 +4843,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "" @@ -4868,20 +4868,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4893,17 +4893,17 @@ msgstr "" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4919,7 +4919,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "" @@ -4927,8 +4927,8 @@ msgstr "" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4961,8 +4961,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5006,13 +5006,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Shrani" @@ -5020,8 +5020,8 @@ msgstr "Shrani" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5037,7 +5037,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5066,7 +5066,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5084,11 +5084,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5101,8 +5101,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5110,7 +5110,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5170,7 +5170,7 @@ msgstr "" msgid "Select server manually" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5195,9 +5195,9 @@ msgid "Select your transaction file" msgstr "" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Pošlji" @@ -5229,7 +5229,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5242,7 +5242,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5263,7 +5263,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5299,46 +5299,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5346,20 +5346,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5375,14 +5375,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5395,11 +5395,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5474,7 +5474,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "" @@ -5482,12 +5482,12 @@ msgstr "" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5500,7 +5500,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5521,17 +5521,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5545,12 +5545,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5559,11 +5559,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5576,11 +5576,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5596,20 +5596,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5633,7 +5633,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5648,15 +5648,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5665,10 +5665,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "" @@ -5696,13 +5696,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Sinhroniziram..." @@ -5714,27 +5714,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5764,18 +5764,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5796,10 +5796,10 @@ msgstr "" msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5850,7 +5850,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5859,11 +5859,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5915,20 +5915,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5940,7 +5940,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5956,7 +5956,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6031,7 +6031,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6057,11 +6057,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6094,17 +6094,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6113,7 +6113,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6122,12 +6122,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6135,14 +6135,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "" @@ -6158,7 +6158,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6168,7 +6168,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6181,7 +6181,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6189,16 +6189,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6237,30 +6237,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6280,9 +6280,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6306,7 +6306,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6314,25 +6314,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6341,20 +6341,20 @@ msgid "Transaction ID" msgstr "" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6370,7 +6370,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6383,8 +6383,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6397,9 +6397,9 @@ msgid "Transaction:" msgstr "" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "" @@ -6420,11 +6420,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6433,8 +6433,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6458,7 +6458,7 @@ msgstr "" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6514,8 +6514,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6541,16 +6541,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6558,7 +6558,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6566,7 +6566,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6578,7 +6578,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6598,7 +6598,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6630,12 +6630,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6644,18 +6644,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6671,24 +6671,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6708,7 +6708,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6721,7 +6721,7 @@ msgstr "" msgid "Verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6779,11 +6779,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6799,7 +6799,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6808,7 +6808,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "" @@ -6836,22 +6836,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6859,11 +6859,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6879,15 +6879,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6895,7 +6895,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6903,7 +6903,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6934,11 +6934,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6987,32 +6987,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7022,7 +7022,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7039,11 +7039,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7063,7 +7063,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7071,11 +7071,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7087,11 +7087,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7118,7 +7118,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7138,7 +7138,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7146,7 +7146,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7167,13 +7167,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7194,7 +7194,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7210,7 +7210,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7223,7 +7223,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7232,12 +7232,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7250,7 +7250,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7259,12 +7259,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7277,7 +7277,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7338,7 +7338,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7347,8 +7347,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7356,8 +7356,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7369,7 +7369,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7385,7 +7385,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7410,7 +7410,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "" @@ -7445,15 +7445,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7474,7 +7474,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "" @@ -7482,7 +7482,7 @@ msgstr "" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7551,15 +7551,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7567,7 +7567,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7575,11 +7575,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7591,23 +7591,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/sv_SE/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/sv_SE/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/sv_SE/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/sv_SE/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/sv_SE/electron-cash.po b/contrib/electrum-locale/locale/sv_SE/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/sv_SE/electron-cash.po rename to contrib/electrum-locale/locale/sv_SE/vilight.po index 70ff18974..be158d6a9 100644 --- a/contrib/electrum-locale/locale/sv_SE/electron-cash.po +++ b/contrib/electrum-locale/locale/sv_SE/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d minuter" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Addresser" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 timme" msgid "1 week" msgstr "1 vecka" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "En kopia av din plånbok skapades i" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "En föreslagen avgift har automatiskt lagts till till detta fält. Du kan ändra den. Den föreslagna avgiften ökar ifall transaktions storleken ökar." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Övriga avgifter" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adress" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Alla" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Belopp" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Belopp som erhållits:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Skickat belopp:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Belopp att skicka" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Utseende" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Tillbaka" @@ -815,9 +815,9 @@ msgstr "Tillbaka" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Balans" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Basenhet" @@ -864,7 +864,7 @@ msgstr "Basenhet för din plånbok." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Sänd" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Sänder transaktion..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Avbryt" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "Kan inte läsa fil" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Redigera" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "Ändra PIN-kod" msgid "Change Password" msgstr "Ändra lösenord" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "Välj en backupfil:" msgid "Choose a password to encrypt your wallet keys." msgstr "Välj ett lösenord för att kryptera dina plånboksnycklar." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "" msgid "Choose..." msgstr "Välj..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Rensa" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "Kon&sol" msgid "Con&tacts" msgstr "Kon&takter" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "Mörk/Ljus" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Datum" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Ta bort" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "Ta bort faktura?" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Beskrivning" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Beskrivning av transaktionen (ej obligatorisk)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Detaljer" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Spara inte detta elektroniskt." @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Vill du fortsätta?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Ändra avgift manuellt" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Kryptera" msgid "Encrypt wallet file" msgstr "Kryptera plånbok" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Ange lösenordsfras" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Ange lösenord" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Fel" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Exportera historik" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Misslyckades att uppdatera lösenordet" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Importera" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Importera privata nycklar" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Ange belopp" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Ogiltigt belopp" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "Fakturor" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "Läs in transaktion" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "Publika huvudnycklar" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "" @@ -3766,19 +3766,19 @@ msgstr "" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3809,7 +3809,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Ingen plånbok" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Inget meddelande eller belopp" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Ingen" @@ -3926,7 +3926,7 @@ msgstr "Ingen" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Inte ansluten" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Frånkopplad" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Alternativ" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "Lösenord" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Lösenordet har uppdaterats" @@ -4285,7 +4285,7 @@ msgstr "Lösenordet har uppdaterats" msgid "Password:" msgstr "Lösenord:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "Betala nu" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Betala till" @@ -4325,21 +4325,21 @@ msgstr "Betala till flera" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Betalning skickad." @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4523,7 +4523,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4564,7 +4564,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4601,14 +4601,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "Proxyanvändare" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Publik nyckel" @@ -4682,10 +4682,10 @@ msgstr "Publik nycklar" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR-kod" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Ta emot" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Mottagarens adress" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Ta bort" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "Rapportera bugg" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Begäran har löpt ut" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4913,7 +4913,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Begärt belopp" @@ -4921,8 +4921,8 @@ msgstr "Begärt belopp" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Spara" @@ -5014,8 +5014,8 @@ msgstr "Spara" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5104,7 +5104,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "" msgid "Select server manually" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Skicka" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Inställningar" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Visa" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "Visa QR-kod" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "" @@ -5476,12 +5476,12 @@ msgstr "" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "" @@ -5690,13 +5690,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "" @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "" msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6129,14 +6129,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "" @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "Total storlek" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Transaktion" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "Transaktions-ID" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "Transaktions-ID:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "Transaktion:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Transaktioner" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Okänd" @@ -6552,7 +6552,7 @@ msgstr "Okänd" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Använd Tor-proxy" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6702,7 +6702,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "Verifiera" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "" @@ -6826,22 +6826,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6924,11 +6924,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6977,32 +6977,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7012,7 +7012,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7029,11 +7029,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7053,7 +7053,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7061,11 +7061,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7077,11 +7077,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7108,7 +7108,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7128,7 +7128,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7136,7 +7136,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7157,13 +7157,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7184,7 +7184,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7200,7 +7200,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7213,7 +7213,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7222,12 +7222,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7240,7 +7240,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7249,12 +7249,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7267,7 +7267,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7328,7 +7328,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7337,8 +7337,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7346,8 +7346,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7359,7 +7359,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7375,7 +7375,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7400,7 +7400,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "" @@ -7435,15 +7435,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7464,7 +7464,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "" @@ -7472,7 +7472,7 @@ msgstr "" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7537,15 +7537,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7553,7 +7553,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7561,11 +7561,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7577,23 +7577,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/ta_IN/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/ta_IN/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/ta_IN/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/ta_IN/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/ta_IN/electron-cash.po b/contrib/electrum-locale/locale/ta_IN/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/ta_IN/electron-cash.po rename to contrib/electrum-locale/locale/ta_IN/vilight.po index d1f0ba562..1f5cbc718 100644 --- a/contrib/electrum-locale/locale/ta_IN/electron-cash.po +++ b/contrib/electrum-locale/locale/ta_IN/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "" msgid "1 week" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "இவ்விடத்தில் ஒரு பரிவர்த்தனை கட்டணம் பரிந்துரைக்கப்படும். வேண்டுமெனில் நீங்கள் அதை மாற்றிகொள்ளலாம். பரிந்துரைக்கபட்ட கட்டணம் பரிவர்த்தனையின் வேகத்தை அதிகரிக்கிறது." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "முகவரி" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "தொகை" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "" @@ -815,9 +815,9 @@ msgstr "" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "இருப்பு தொகை" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "" @@ -864,7 +864,7 @@ msgstr "" msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "" @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "ரத்து" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "" msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "அழி" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "தொடர்புகள்" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "இடைநிலை பலகையில் நகலெடுக்க" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "தேதி" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "நீக்கு" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "விளக்கம்" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "இந்த பரிவர்த்தனையின் விளக்கம் (கட்டாயமானது அல்ல)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "விவரங்கள்" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "" msgid "Encrypt wallet file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "" @@ -3766,19 +3766,19 @@ msgstr "" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3809,7 +3809,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3926,7 +3926,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "" @@ -4285,7 +4285,7 @@ msgstr "" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "" @@ -4325,21 +4325,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "" @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4523,7 +4523,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4564,7 +4564,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4601,14 +4601,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "" @@ -4682,10 +4682,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4913,7 +4913,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "" @@ -4921,8 +4921,8 @@ msgstr "" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "" @@ -5014,8 +5014,8 @@ msgstr "" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5104,7 +5104,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "" msgid "Select server manually" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "" @@ -5476,12 +5476,12 @@ msgstr "" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "" @@ -5690,13 +5690,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "" @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "" msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6129,14 +6129,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "" @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6552,7 +6552,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6702,7 +6702,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "" @@ -6826,22 +6826,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6924,11 +6924,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6977,32 +6977,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7012,7 +7012,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7029,11 +7029,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7053,7 +7053,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7061,11 +7061,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7077,11 +7077,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7108,7 +7108,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7128,7 +7128,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7136,7 +7136,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7157,13 +7157,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7184,7 +7184,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7200,7 +7200,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7213,7 +7213,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7222,12 +7222,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7240,7 +7240,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7249,12 +7249,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7267,7 +7267,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7328,7 +7328,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7337,8 +7337,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7346,8 +7346,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7359,7 +7359,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7375,7 +7375,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7400,7 +7400,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "" @@ -7435,15 +7435,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7464,7 +7464,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "" @@ -7472,7 +7472,7 @@ msgstr "" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7537,15 +7537,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7553,7 +7553,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7561,11 +7561,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7577,23 +7577,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/th_TH/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/th_TH/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/th_TH/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/th_TH/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/th_TH/electron-cash.po b/contrib/electrum-locale/locale/th_TH/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/th_TH/electron-cash.po rename to contrib/electrum-locale/locale/th_TH/vilight.po index 7d942bdee..c06bb685f 100644 --- a/contrib/electrum-locale/locale/th_TH/electron-cash.po +++ b/contrib/electrum-locale/locale/th_TH/vilight.po @@ -24,7 +24,7 @@ msgstr "" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "" @@ -293,7 +293,7 @@ msgstr "(อิเล็กตรอนสดก่อน 3.3.6 ผลิตไ msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "" msgid "1 week" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "" @@ -815,9 +815,9 @@ msgstr "" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "" @@ -864,7 +864,7 @@ msgstr "" msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "" @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "" msgid "Choose..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "" @@ -1376,7 +1376,7 @@ msgstr "เหรียญ" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "" msgid "Con&tacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "คัดลอกคีย์สาธารณะ" @@ -1658,7 +1658,7 @@ msgstr "คัดลอกคีย์สาธารณะ" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "" #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "" @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "" msgid "Encrypt wallet file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3224,8 +3224,8 @@ msgid_plural "Inputs ({num_inputs})" msgstr[0] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "" @@ -3237,7 +3237,7 @@ msgstr "" msgid "Input raw transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "" @@ -3259,8 +3259,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3272,25 +3272,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3323,9 +3323,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3334,7 +3334,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3346,7 +3346,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3366,7 +3366,7 @@ msgstr "" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3479,7 +3479,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3519,7 +3519,7 @@ msgstr "" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3572,12 +3572,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3593,16 +3593,16 @@ msgstr "" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3639,7 +3639,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3651,7 +3651,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3675,15 +3675,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3693,12 +3693,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3711,11 +3711,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3728,7 +3728,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "" @@ -3738,7 +3738,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3747,7 +3747,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3756,8 +3756,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "" @@ -3765,19 +3765,19 @@ msgstr "" msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3786,21 +3786,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3808,7 +3808,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3824,15 +3824,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3840,7 +3840,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3869,7 +3869,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "" @@ -3878,16 +3878,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3899,25 +3899,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "" @@ -3925,7 +3925,7 @@ msgstr "" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3947,8 +3947,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "" @@ -4005,18 +4005,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "" @@ -4048,11 +4048,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "" @@ -4087,13 +4087,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4121,11 +4121,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4145,12 +4145,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4163,12 +4163,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4177,8 +4177,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4192,7 +4192,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "" @@ -4245,21 +4245,21 @@ msgstr "" msgid "Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4274,7 +4274,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "" @@ -4282,7 +4282,7 @@ msgstr "" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4308,9 +4308,9 @@ msgid "Pay Now" msgstr "" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "" @@ -4322,21 +4322,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "" @@ -4365,7 +4365,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4397,7 +4397,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4431,19 +4431,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4464,7 +4464,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4477,7 +4477,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4501,8 +4501,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4520,7 +4520,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4553,7 +4553,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4561,7 +4561,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4590,7 +4590,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4598,14 +4598,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "" @@ -4622,7 +4622,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4667,7 +4667,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "" @@ -4679,10 +4679,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4691,9 +4691,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "" @@ -4721,7 +4721,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4767,8 +4767,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "" @@ -4781,13 +4781,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4795,7 +4795,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "" @@ -4808,11 +4808,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4834,10 +4834,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "" @@ -4859,20 +4859,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4884,17 +4884,17 @@ msgstr "" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4910,7 +4910,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "" @@ -4918,8 +4918,8 @@ msgstr "" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4952,8 +4952,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -4997,13 +4997,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "" @@ -5011,8 +5011,8 @@ msgstr "" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5028,7 +5028,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5057,7 +5057,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5075,11 +5075,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5092,8 +5092,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5101,7 +5101,7 @@ msgstr "" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5161,7 +5161,7 @@ msgstr "" msgid "Select server manually" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5186,9 +5186,9 @@ msgid "Select your transaction file" msgstr "" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "" @@ -5220,7 +5220,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5233,7 +5233,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5254,7 +5254,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5290,46 +5290,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5337,20 +5337,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5366,14 +5366,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5386,11 +5386,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5465,7 +5465,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "" @@ -5473,12 +5473,12 @@ msgstr "" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5491,7 +5491,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5512,17 +5512,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5536,12 +5536,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5550,11 +5550,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5567,11 +5567,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5587,20 +5587,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5624,7 +5624,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5639,15 +5639,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5656,10 +5656,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "" @@ -5687,13 +5687,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "" @@ -5705,27 +5705,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5755,18 +5755,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5787,10 +5787,10 @@ msgstr "" msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5841,7 +5841,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5850,11 +5850,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5906,20 +5906,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5931,7 +5931,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5947,7 +5947,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6022,7 +6022,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6048,11 +6048,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6085,17 +6085,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6104,7 +6104,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6113,12 +6113,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6126,14 +6126,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "" @@ -6149,7 +6149,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6159,7 +6159,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6172,7 +6172,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6180,16 +6180,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6228,30 +6228,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6271,9 +6271,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6297,7 +6297,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6305,25 +6305,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6332,20 +6332,20 @@ msgid "Transaction ID" msgstr "" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6361,7 +6361,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6374,8 +6374,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6388,9 +6388,9 @@ msgid "Transaction:" msgstr "" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "" @@ -6411,11 +6411,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6424,8 +6424,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6449,7 +6449,7 @@ msgstr "" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6505,8 +6505,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6532,16 +6532,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6549,7 +6549,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6557,7 +6557,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6569,7 +6569,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6589,7 +6589,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6621,12 +6621,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6635,18 +6635,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6662,24 +6662,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6699,7 +6699,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6712,7 +6712,7 @@ msgstr "" msgid "Verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6764,11 +6764,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6784,7 +6784,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6793,7 +6793,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "" @@ -6821,22 +6821,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6844,11 +6844,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6864,15 +6864,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6880,7 +6880,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6888,7 +6888,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6919,11 +6919,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6972,32 +6972,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7007,7 +7007,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7024,11 +7024,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7048,7 +7048,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7056,11 +7056,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7072,11 +7072,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7103,7 +7103,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7123,7 +7123,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7131,7 +7131,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7152,13 +7152,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7179,7 +7179,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7195,7 +7195,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7208,7 +7208,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7217,12 +7217,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7235,7 +7235,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7244,12 +7244,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7262,7 +7262,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7323,7 +7323,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7332,8 +7332,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7341,8 +7341,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7354,7 +7354,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7370,7 +7370,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7395,7 +7395,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "" @@ -7430,15 +7430,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7459,7 +7459,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "" @@ -7467,7 +7467,7 @@ msgstr "" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7530,15 +7530,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7546,7 +7546,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7554,11 +7554,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7570,23 +7570,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/tr_TR/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/tr_TR/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/tr_TR/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/tr_TR/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/tr_TR/electron-cash.po b/contrib/electrum-locale/locale/tr_TR/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/tr_TR/electron-cash.po rename to contrib/electrum-locale/locale/tr_TR/vilight.po index 1f9978f2b..74c518818 100644 --- a/contrib/electrum-locale/locale/tr_TR/electron-cash.po +++ b/contrib/electrum-locale/locale/tr_TR/vilight.po @@ -24,7 +24,7 @@ msgstr " (Döviz kuru yok)" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d dakika" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Adresler" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 Saat" msgid "1 week" msgstr "1 Hafta" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Cüzdanın bir kopyası oluşturulmuş" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Önerilen ücret otomatik olarak bu alana eklenir. İşlem geçersiz kılınabilir. Önerilen ücret işlem büyüklüğünü artırır." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "İmzalayıcı Ekle" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Ek ücretler" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Adres" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "Adres cüzdana ait değil." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Hepsi" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Miktar" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Alınan tutar:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Gönderilecek miktar" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Gönderilecek tutar" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Görünüş" @@ -717,7 +717,7 @@ msgstr "Devam etmek istediğinizden emin misiniz?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Geri" @@ -815,9 +815,9 @@ msgstr "Geri" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Miktar" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Ana ünite" @@ -864,7 +864,7 @@ msgstr "Cüzdanınızın temel birimi." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Yayınla" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Ödeme yayınlanıyor..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "İptal" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "Python kitaplığı bulunamadı" msgid "Cannot read file" msgstr "Dosya okunamıyor" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Değiştir" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "PIN'i değiştir" msgid "Change Password" msgstr "Parolayı Değiştir" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "Ebeveyn için Çocuk Ödeme" msgid "Child pays for parent" msgstr "Ebeveyn için çocuk ödeme" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "Lütfen bir yedekleme dosyası seçiniz:" msgid "Choose a password to encrypt your wallet keys." msgstr "Cüzdan anahtarlarınızı şifrelemek için bir parola seçin." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "İnternet tarayıcı açıldığında hangi blok bulucusunun kullanılac msgid "Choose..." msgstr "Seçiniz..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Temizle" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "Kon&sol" msgid "Con&tacts" msgstr "Kiş&iler" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "Tohum Kodu'nu onaylayın" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "bağlı düğüm" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Kişiler" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Linki kopyala" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "Kopyala ve Kapat" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Panoya kopyala" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "Oluştur" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "Yeni tohum oluştur" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "Koyu/Açık" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Tarih:" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Sil" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "Fatura silinsin mi?" msgid "Delete wallet file?" msgstr "Cüzdanı sil?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Açıklama" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "İşlem açıklaması (Zorunlu değil)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Ayrıntılar" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "Pasif" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Elektronik ortamda saklamayın." @@ -2025,24 +2025,24 @@ msgstr "Bu raporu göndermek istiyor musunuz?" msgid "Do you wish to continue?" msgstr "Devam etmek istiyor musunuz?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Komisyonu elle düzenle" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Şifrele" msgid "Encrypt wallet file" msgstr "Cüzdan dosyasını şifrele" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Mesajı şifrele/Şifresini çöz" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Parolayı Girin" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Şifrenizi giriniz" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Çıktıların listesini 'Şuraya öde' alanına gir." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "Parolanızı giriniz ya da başka bir dosya seçiniz." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Devam etmek için parolanızı girin" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Hata" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "Dışa aktarma geçmişi" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "İstediğiniz kelimelerle bu tohumu genişletin" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Şifre güncellenemedi" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "İşlem ücreti" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Ücretler" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Resmi Para" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Fiat Para Birimi" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Dosya" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Bu dalı takip et" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "Biçim: adres, tutar" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Yükseklik" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Bu sizin ana açık anahtarınız." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Sunucu" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Dışa aktar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "Bitcoin Adreslerini İçe Aktar" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "Gizli anahtarı dışa aktar" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Bilgi" @@ -3225,8 +3225,8 @@ msgstr[0] "" msgstr[1] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Girdi miktarı" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Ham işlemi girin" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Girişler" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Yetersiz bakiye" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Geçersiz adres" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Geçersiz miktar" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "Faturalar" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "İşlem yükü" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "Açık anahtarları yönet" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Maksimum" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Maks komisyon aşıldı" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Madencilik ücreti" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "Birden fazla imzalı cüzdan" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "İsim" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Ağ" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Asla" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Tohum Kodu'nu kimseye göstermeyin." @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Onu asla bir internet sitesinde yazmayın." @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Yeni kişi" @@ -3766,19 +3766,19 @@ msgstr "Yeni kişi" msgid "New Password:" msgstr "Yeni Parola:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Yeni kişi" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Sonraki" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "Hayır" @@ -3809,7 +3809,7 @@ msgstr "Hayır" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Cüzdan yok" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Mesaj veya miktar yok" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "Cüzdanınızda daha fazla adres yok." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Çıkışlar yok" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Hiç" @@ -3926,7 +3926,7 @@ msgstr "Hiç" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Bağlanamadı" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Ondalık noktadan sonra ayarlanan sayı kadar sıfır görüntülenir. Örneğin, eğer bu sayı 2'ye ayarlanmış ise \"1.\" sayısı \"1.00\" olarak görüntülenecektir" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "Tamam" @@ -4050,11 +4050,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Çevrimdışı" @@ -4089,13 +4089,13 @@ msgstr "" msgid "One output per line." msgstr "Her satıra bir çıktı." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Çevrimiçi blok zinciri" @@ -4123,11 +4123,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4147,12 +4147,12 @@ msgstr "AçıkLakap" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "AçıkLakap kaydı, ödeme kabul etmek ve ödeme isteklerini imzalamak için kullanılır." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4165,12 +4165,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Seçenekler" @@ -4179,8 +4179,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4195,7 +4195,7 @@ msgstr "Çıktı miktarı" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Çıkışlar" @@ -4248,21 +4248,21 @@ msgstr "" msgid "Password" msgstr "Şifre" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Şifre dayanıklılığı" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Parola devre-dışı, bu cüzdan korumasız" @@ -4277,7 +4277,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Şifre başarıyla güncellendi" @@ -4285,7 +4285,7 @@ msgstr "Şifre başarıyla güncellendi" msgid "Password:" msgstr "Şifre:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4311,9 +4311,9 @@ msgid "Pay Now" msgstr "Şimdi öde" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Kime" @@ -4325,21 +4325,21 @@ msgstr "Çoklu Öde" msgid "Payment Request" msgstr "Ödeme Talebi" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Ödeme isteğinin süresi dolmuş" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Ödeme gönderildi." @@ -4368,7 +4368,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4400,7 +4400,7 @@ msgstr "Lütfen ortak imzalayıcınızın ana açık anahtarını (xpub) giriniz msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4434,19 +4434,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4467,7 +4467,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4480,7 +4480,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "Arkadaşlarınızla paylaşınız." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4504,8 +4504,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Lütfen bekleyin" @@ -4523,7 +4523,7 @@ msgstr "Lütfen bekleyin..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4556,7 +4556,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Bağlantı noktası" @@ -4564,7 +4564,7 @@ msgstr "Bağlantı noktası" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4593,7 +4593,7 @@ msgstr "Cüzdanı açmak için 'ileri' tuşuna basın." msgid "Press Enter" msgstr "Enter tuşuna basın" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Önizle" @@ -4601,14 +4601,14 @@ msgstr "Önizle" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "Özel Anahtar" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Gizli anahtar" @@ -4625,7 +4625,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Devam et?" @@ -4670,7 +4670,7 @@ msgid "Proxy user" msgstr "Proxy kullanıcı" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Açık anahtar" @@ -4682,10 +4682,10 @@ msgstr "Ortak Anahtar" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4694,9 +4694,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR kodu" @@ -4724,7 +4724,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "Soru" @@ -4770,8 +4770,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Ödeme istekleri" @@ -4784,13 +4784,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "Alınıyor" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4798,7 +4798,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Ödeme istenilen adres" @@ -4811,11 +4811,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Script Kullanın" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4837,10 +4837,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Temizle" @@ -4862,20 +4862,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4887,17 +4887,17 @@ msgstr "Hatayı bildir" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Istek süresi bitti" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "Ödeme talep et" @@ -4913,7 +4913,7 @@ msgstr "İstek gönderildi." msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "İstenilen miktar" @@ -4921,8 +4921,8 @@ msgstr "İstenilen miktar" msgid "Requestor" msgstr "Talep" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "İstekler" @@ -4955,8 +4955,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5000,13 +5000,13 @@ msgstr "Ödeme taleplerini imzalamak için kullanılan SSL sertifikası." msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Kayıt" @@ -5014,8 +5014,8 @@ msgstr "Kayıt" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5031,7 +5031,7 @@ msgstr "Faturayı dosyaya kaydet" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5060,7 +5060,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5078,11 +5078,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5095,8 +5095,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Tohum(Seed)" @@ -5104,7 +5104,7 @@ msgstr "Tohum(Seed)" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5164,7 +5164,7 @@ msgstr "Server'i otomatik olarak seç" msgid "Select server manually" msgstr "Sunucuyu elle seç" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5189,9 +5189,9 @@ msgid "Select your transaction file" msgstr "İşlem dosyanı seç" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Gönder" @@ -5223,7 +5223,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5236,7 +5236,7 @@ msgstr "Sunucu" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5257,7 +5257,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5293,46 +5293,46 @@ msgstr "PIN belirle" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Ayarlar" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Göster" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5340,20 +5340,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5369,14 +5369,14 @@ msgstr "" msgid "Show QR Code" msgstr "Barkod göster" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "QR kodu göster" @@ -5389,11 +5389,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "geçmiş oranını göster" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5468,7 +5468,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "İmza" @@ -5476,12 +5476,12 @@ msgstr "İmza" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Mesajı imzala/doğrula" @@ -5494,7 +5494,7 @@ msgid "Signature" msgstr "İmza" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "İmza doğrulandı" @@ -5515,17 +5515,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "İşlem imzalanıyor..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Boyut:" @@ -5539,12 +5539,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "Üzgünüm!" @@ -5553,11 +5553,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Kaynak" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5570,11 +5570,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "Harcama" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5590,20 +5590,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Sadece onaylanan madeni paraları harca" @@ -5627,7 +5627,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5642,15 +5642,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Durum" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Durum:" @@ -5659,10 +5659,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Başarılı" @@ -5690,13 +5690,13 @@ msgstr "Gizli anahtarı temizle" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Senkronize ediliyor.." @@ -5708,27 +5708,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "TREZOR cüzdan" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "Metin panoya kopyalandı" @@ -5758,18 +5758,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5790,10 +5790,10 @@ msgstr "İşlem ücretinin miktarı gönderici tarafından serbestçe ayarlanabi msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Cüzdanınızda yeterli miktarda para yok ise, miktar kırmızı görünür." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5844,7 +5844,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5853,11 +5853,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5909,20 +5909,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5934,7 +5934,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5950,7 +5950,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6025,7 +6025,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6051,11 +6051,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Bu blockchain sizin serverdan yapılmış işlemleri doğrulamak için kullanılmaktadır." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6088,17 +6088,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Bu sadece-izle olan bir cüzdandır" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6107,7 +6107,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Bu, blokçunun yerel kopyasının yüksekliğidir." @@ -6116,12 +6116,12 @@ msgid "This may result in higher transactions fees." msgstr "Bundan dolayı yüksek transfer ücreti ödemek durumunda kalabilirsiniz." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Bu ödeme isteği imzalanacak." @@ -6129,14 +6129,14 @@ msgstr "Bu ödeme isteği imzalanacak." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Bu tohum, bilgisayar arızası durumunda cüzdanınızı kurtarmanıza izin verir." @@ -6152,7 +6152,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6162,7 +6162,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6175,7 +6175,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Bu işlem kaydedilmedi. Hâlâ kapatılsın mı?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6183,16 +6183,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Cüzdan hiçbir tohuma sahip değil" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6231,30 +6231,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Seed'inizi doğru bir şekilde kurtardığınızdan emin olmak için lütfen buraya tekrar yazın." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6274,9 +6274,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6300,7 +6300,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6308,25 +6308,25 @@ msgstr "" msgid "Total size" msgstr "Toplam boyut" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "İşlem" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6335,20 +6335,20 @@ msgid "Transaction ID" msgstr "İşlem kimliği" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "İşlem kimliği:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6364,7 +6364,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6377,8 +6377,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "İşlemin cüzdan ile bir ilgisi yok" @@ -6391,9 +6391,9 @@ msgid "Transaction:" msgstr "İşlem:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "İşlemler" @@ -6414,11 +6414,11 @@ msgid "Tx" msgstr "İşlem" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6427,8 +6427,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6452,7 +6452,7 @@ msgstr "Csv oluşturulamıyor" msgid "Unable to export history" msgstr "Kayıtlar dışa aktarılamıyor" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6508,8 +6508,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6535,16 +6535,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Bilinmeyen" @@ -6552,7 +6552,7 @@ msgstr "Bilinmeyen" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6560,7 +6560,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6572,7 +6572,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "Kullanılmamış" @@ -6592,7 +6592,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6624,12 +6624,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Kullanıcı proksi adresini kullan" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6638,18 +6638,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Kendi sunucunu kullan" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Kullanılan adresleri değiştir" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Birden fazla değişen adres kullan" @@ -6665,24 +6665,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "ssl_chain ve ssl_privkey 'i ayarlamak için setconfig kullan." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Cüzdanına şifre eklemek için iletişim kutusuna git" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Parola değiştirmek için lütfen e-mail adresini kontrol et" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "Kullanılan" @@ -6702,7 +6702,7 @@ msgstr "Değişiklik adreslerini kullanmak, diğer kişilerin işlemlerinizi izl msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6715,7 +6715,7 @@ msgstr "" msgid "Verify" msgstr "Doğrulandı" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6769,11 +6769,11 @@ msgstr "Faturanızı Görüntüleyin" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Blcok explorer'da görüntüle" @@ -6789,7 +6789,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6798,7 +6798,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "UYARI" @@ -6826,22 +6826,22 @@ msgstr "Cüzdan" msgid "Wallet Information" msgstr "Cüzdan Bilgisi" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6849,11 +6849,11 @@ msgstr "" msgid "Wallet backup created" msgstr "Cüzdan yedekleme oluşturuldu" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6869,15 +6869,15 @@ msgstr "" msgid "Wallet name" msgstr "Cüzdan ismi" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6885,7 +6885,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6893,7 +6893,7 @@ msgstr "" msgid "Wallet type" msgstr "Cüzdan tipi" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "Cüzdanlar" @@ -6924,11 +6924,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6977,32 +6977,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Yanlış imza" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "Tamam" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7012,7 +7012,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Şunu takip ediyorsun" @@ -7029,11 +7029,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7053,7 +7053,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7061,11 +7061,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7077,11 +7077,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7108,7 +7108,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7128,7 +7128,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7136,7 +7136,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7157,13 +7157,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "Hesaplarınız şuraya taşındı" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Bitcoinleriniz şifre korumalıdır. Cüzdan dosyanız şifrelenmemektedir." @@ -7184,7 +7184,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7200,7 +7200,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7213,7 +7213,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "Seed eklentiniz" @@ -7222,12 +7222,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Seed'iniz önemlidir!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Sunucunuz şubede" @@ -7240,7 +7240,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Cüzdan nesil seed'iniz:" @@ -7249,12 +7249,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Cüzdan geçmişiniz başarıyla dışa aktarıldı." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Cüzdanınız korunmamıştır." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Cüzdanınız parola korumalı ve şifrelidir." @@ -7267,7 +7267,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Noktadan sonraki ondalık sıfırlar" @@ -7328,7 +7328,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7337,8 +7337,8 @@ msgid "are frozen" msgstr "Dondurulmuş." #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "bloklar" @@ -7346,8 +7346,8 @@ msgstr "bloklar" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7359,7 +7359,7 @@ msgstr "ortak imzalayan" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7375,7 +7375,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7400,7 +7400,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "Lütfen bekleyin..." @@ -7435,15 +7435,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "Bilinmiyor" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7464,7 +7464,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "görüntüle" @@ -7472,7 +7472,7 @@ msgstr "görüntüle" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7537,15 +7537,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7553,7 +7553,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7561,11 +7561,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7577,23 +7577,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/uk_UA/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/uk_UA/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/uk_UA/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/uk_UA/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/uk_UA/electron-cash.po b/contrib/electrum-locale/locale/uk_UA/vilight.po similarity index 81% rename from contrib/electrum-locale/locale/uk_UA/electron-cash.po rename to contrib/electrum-locale/locale/uk_UA/vilight.po index 165449ff6..0d76ebcf4 100644 --- a/contrib/electrum-locale/locale/uk_UA/electron-cash.po +++ b/contrib/electrum-locale/locale/uk_UA/vilight.po @@ -24,7 +24,7 @@ msgstr " (Недоступна інформація про курс обмін msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d хвилини" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Адреси" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 година" msgid "1 week" msgstr "1 тиждень" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Копія вашого гаманця була створена в" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Пропонований розмір комісії автоматично додається в це поле. Ви можете перевизначити її. Вона збільшується разом з розміром транзакції." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "Додайте додаткову віртуальну клавіату msgid "Add cosigner" msgstr "Додати співвласника" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Додаткові сплати" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Адреса" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "Адреса не в гаманці." -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "Всі" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "Сума" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Отримана сума:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Витрачена сума:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "Сума для відправлення" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "{} (Без назви)" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Основні" @@ -718,7 +718,7 @@ msgstr "Ви справді хочете продовжити?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -738,7 +738,7 @@ msgstr "Аудіо-модем" msgid "Audio Modem Settings" msgstr "Налаштування Аудіо-модему" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -796,19 +796,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Назад" @@ -816,9 +816,9 @@ msgstr "Назад" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Рахунок" @@ -853,7 +853,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Валюта" @@ -865,7 +865,7 @@ msgstr "Валюта вашого гаманця." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -898,12 +898,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Трансляція" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Трансляція транзакції..." @@ -919,7 +919,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -931,41 +931,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Скасувати" @@ -990,7 +990,7 @@ msgstr "" msgid "Cancelled by user" msgstr "Скасовано користувачем" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -998,12 +998,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "Не можу додати цього співвласника:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1016,16 +1016,16 @@ msgstr "Не вдається знайти бібліотеку python для" msgid "Cannot read file" msgstr "Неможливо прочитати файл" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1102,7 +1102,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1194,25 +1194,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "Змінити" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1228,8 +1228,8 @@ msgstr "Змінити PIN-код" msgid "Change Password" msgstr "Змінити Пароль" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1265,7 +1265,7 @@ msgstr "Нащадок Платить за Батька" msgid "Child pays for parent" msgstr "Нащадок платить за батька" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1286,7 +1286,7 @@ msgstr "Виберіть файл резервної копії:" msgid "Choose a password to encrypt your wallet keys." msgstr "Виберіть пароль для шифрування ключів вашого гаманця." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1325,8 +1325,8 @@ msgstr "Виберіть, який онлайн блок досліджуват msgid "Choose..." msgstr "Обрати..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Очистити" @@ -1377,7 +1377,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1410,7 +1410,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1426,7 +1426,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1442,7 +1442,7 @@ msgstr "&Консоль" msgid "Con&tacts" msgstr "Кон&такти" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1466,7 +1466,7 @@ msgstr "Підтвердження Seed" msgid "Confirm Seed Extension" msgstr "Підтвердити розширення фрази-паролю (seed)" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1478,7 +1478,7 @@ msgstr "Підтвердіть зміну секретної фрази захи msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1551,13 +1551,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "Підключений вузол" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1578,34 +1578,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Контакти" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1623,10 +1623,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1651,7 +1651,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1659,7 +1659,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1679,7 +1679,7 @@ msgstr "" msgid "Copy URI" msgstr "Копіювати URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1687,7 +1687,7 @@ msgstr "" msgid "Copy and Close" msgstr "Копіювати та Закрити" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1696,8 +1696,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Скопіювати в буфер обміну" @@ -1764,7 +1764,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1772,8 +1772,8 @@ msgstr "" msgid "Create" msgstr "Створити" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1781,7 +1781,7 @@ msgstr "" msgid "Create a new seed" msgstr "Створити нову фразу-пароль (seed)" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1817,7 +1817,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1839,8 +1839,8 @@ msgstr "Темна/Світла" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Дата" @@ -1871,15 +1871,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Видалити" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1891,12 +1891,12 @@ msgstr "Видалити рахунок-фактуру?" msgid "Delete wallet file?" msgstr "Видалити файл гаманця?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1904,7 +1904,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1912,22 +1912,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Опис" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Опис транзакції (не обов'язково)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Подробиці" @@ -1977,7 +1977,7 @@ msgstr "Вимкнути Секретну фразу" msgid "Disabled" msgstr "Вимкнено" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1994,7 +1994,7 @@ msgid "Do not pair" msgstr "Неможливо створити пару" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Не зберігайте в електронному вигляді." @@ -2026,24 +2026,24 @@ msgstr "Ви хочете надіслати цей звіт?" msgid "Do you wish to continue?" msgstr "Ви хочете продовжити?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2061,15 +2061,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2085,17 +2085,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Редагувати комісії вручну" @@ -2109,7 +2109,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2118,7 +2118,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2126,7 +2126,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2150,7 +2150,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2191,7 +2191,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2290,12 +2290,12 @@ msgstr "Зашифрувати" msgid "Encrypt wallet file" msgstr "Зашифрований файл гаманця" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Зашифрувати/розшифрувати Повідомлення" @@ -2319,7 +2319,7 @@ msgstr "Наразі шифрування та дешифрування не п msgid "Encryption and decryption are not implemented by {}" msgstr "Шифрування і дешифрування не реалізовані {}" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2336,10 +2336,10 @@ msgid "Enter Passphrase" msgstr "Введіть кодову фразу" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Введіть пароль" @@ -2367,7 +2367,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Введіть список виходів у поле \"Одержувач\"." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2399,11 +2399,11 @@ msgstr "Введіть ключ співвласника" msgid "Enter cosigner seed" msgstr "Введіть фразу-пароль співвласника" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2436,7 +2436,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de msgstr "Введіть слова для відновлення, натискаючи кнопки відповідно до того, що відображається на дисплеї пристрою. Ви також можете використовувати свій NUMPAD. \n" "Натисніть BACKSPACE, щоб повернутися до попереднього вибору чи слова.\n" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2467,17 +2467,17 @@ msgid "Enter your password or choose another file." msgstr "Введіть свій пароль або виберіть інший файл." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Введіть свій пароль для продовження" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2496,11 +2496,11 @@ msgstr "Очистити Digital Bitbox" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Помилка" @@ -2532,7 +2532,7 @@ msgstr "Помилка: дубльований основний відкрити msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2569,7 +2569,7 @@ msgstr "Експортувати Історію" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2582,7 +2582,7 @@ msgid "Extend this seed with custom words" msgstr "Розширити цей seed за допомогою користувацьких слів" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2608,7 +2608,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "Не вдалося оновити пароль" @@ -2617,12 +2617,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Комісія" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2640,27 +2640,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "Комісії" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "Класичні гроші" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "Валюта класичних грошей" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "Файл" @@ -2681,11 +2681,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "Дотримуйтесь цієї гілки" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2720,8 +2720,8 @@ msgid "Format: address, amount" msgstr "Формат: адреса, сума" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "Заблокувати" @@ -2763,11 +2763,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2779,7 +2779,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "Фінансовано" @@ -2807,24 +2807,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "Створити новий випадковий гаманець" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2861,10 +2861,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "Висота" @@ -2876,11 +2876,11 @@ msgstr "" msgid "Here is your master public key." msgstr "Ваш головний відкритий ключ." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2907,8 +2907,8 @@ msgstr "Початковий екран" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "Хост" @@ -2961,7 +2961,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2982,7 +2982,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3011,7 +3011,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "Якщо ви не впевнені, що це таке, залиште це поле без змін." @@ -3056,12 +3056,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3078,12 +3078,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "Якщо ваш гаманець містить кошти, переконайтеся, що ви зберегли його фразу-пароль (seed)." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3093,14 +3093,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "Імпортувати" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3108,7 +3108,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "Імпортувати біткойн-адреси" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3136,19 +3136,19 @@ msgstr "Імпортувати особисті ключі" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3202,8 +3202,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "Інформація" @@ -3229,8 +3229,8 @@ msgstr[2] "" msgstr[3] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Вхідна сума" @@ -3242,7 +3242,7 @@ msgstr "" msgid "Input raw transaction" msgstr "Ввести raw-транзакцію" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "Вхід" @@ -3264,8 +3264,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "Недостатньо коштів" @@ -3277,25 +3277,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Невірна адреса" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Невірна сума" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3328,9 +3328,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3339,7 +3339,7 @@ msgid "Invalid amount" msgstr "Недопустима сума" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3351,7 +3351,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3371,7 +3371,7 @@ msgstr "Рахунок фактури" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3484,7 +3484,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3524,7 +3524,7 @@ msgstr "Завантажити транзакцію" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3577,12 +3577,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3598,16 +3598,16 @@ msgstr "Публічні майстер-ключі" msgid "Matrix" msgstr "Матриця" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "Максимально" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "Перевищено максимальну комісію" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3644,7 +3644,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "Комісія майнера" @@ -3656,7 +3656,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "Налаштування парування телефону" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3680,15 +3680,15 @@ msgstr "Гаманець з мультипідписом" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3698,12 +3698,12 @@ msgstr "НЕ PIN-код ПРИСТРОЮ - див. вище" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "Ім'я" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3716,11 +3716,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "Мережа" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3733,7 +3733,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "Ніколи" @@ -3743,7 +3743,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "Тримайте свій seed в таємниці." @@ -3752,7 +3752,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "Ніколи не вводьте його на веб-сайтах." @@ -3761,8 +3761,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Новий Контакт" @@ -3770,19 +3770,19 @@ msgstr "Новий Контакт" msgid "New Password:" msgstr "Новий Пароль:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "Новий контакт" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "Отримана нова трансакція: {}" @@ -3791,21 +3791,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "Далі" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "Ні" @@ -3813,7 +3813,7 @@ msgstr "Ні" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3829,15 +3829,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Немає Гаманців" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3845,7 +3845,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3874,7 +3874,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "Немає повідомлень чи суми" @@ -3883,16 +3883,16 @@ msgid "No more addresses in your wallet." msgstr "У вашому гаманці немає більше адрес." #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "Немає результатів" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3904,25 +3904,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Порожньо" @@ -3930,7 +3930,7 @@ msgstr "Порожньо" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3952,8 +3952,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Не підключено" @@ -4010,18 +4010,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Кількість десяткових нулів, що відображаються після коми. Наприклад, якщо вказано значення 2, то \"1.\" буде відображатися як \"1.00\"" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "ОК" @@ -4056,11 +4056,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Не в мережі" @@ -4095,13 +4095,13 @@ msgstr "" msgid "One output per line." msgstr "Один вихід на рядок." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "Онлайновий провідник по блокам" @@ -4129,11 +4129,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "Форматуйте пристрій лише тоді, коли ви записали фрази-паролі (seed) для відновлення, та гаманці пристрою порожні, інакше біткойни будуть втрачені назавжди." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4153,12 +4153,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "Запис OpenAlias, який використовується для отримання монет і підписування платіжних запитів." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4171,12 +4171,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "Опції" @@ -4185,8 +4185,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "Застаріла {} прошивка у пристрої із міткою {}. Будь ласка, завантажте оновлену прошивку з {}" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4203,7 +4203,7 @@ msgstr "Вихідна сума" msgid "Output point" msgstr "Вихідна точка" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "Вихідні" @@ -4256,21 +4256,21 @@ msgstr "Секретні фрази дозволяють отримувати д msgid "Password" msgstr "Пароль" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "Надійність пароля" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "Пароль відключений, даний гаманець не захищений" @@ -4285,7 +4285,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "Пароль успішно змінено" @@ -4293,7 +4293,7 @@ msgstr "Пароль успішно змінено" msgid "Password:" msgstr "Пароль:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4319,9 +4319,9 @@ msgid "Pay Now" msgstr "Оплатити зараз" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Одержувач" @@ -4333,21 +4333,21 @@ msgstr "Оплатити більше" msgid "Payment Request" msgstr "Запит Платежу" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Запит оплати закінчився" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Платіж відправлений." @@ -4376,7 +4376,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "Будь ласка, коротко опишіть те, що призвело до помилки (необов'язково):" @@ -4408,7 +4408,7 @@ msgstr "Будь ласка, введіть відкритий ключ (xpub) msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4442,19 +4442,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4475,7 +4475,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4488,7 +4488,7 @@ msgstr "Будь ласка, виберіть, який пристрій {} ви msgid "Please share it with your cosigners." msgstr "Будь ласка, поділіться зі своїми підписантами." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4512,8 +4512,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "Будь ласка, зачекайте" @@ -4531,7 +4531,7 @@ msgstr "Будь ласка, зачекайте..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4564,7 +4564,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "Порт" @@ -4572,7 +4572,7 @@ msgstr "Порт" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4601,7 +4601,7 @@ msgstr "Натисніть \"Далі\", щоб відкрити цей гама msgid "Press Enter" msgstr "Натисніть Enter" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "Попередній перегляд" @@ -4609,14 +4609,14 @@ msgstr "Попередній перегляд" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "Приватний ключ" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "Особистий ключ" @@ -4633,7 +4633,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "Продовжити?" @@ -4678,7 +4678,7 @@ msgid "Proxy user" msgstr "Логін проксі" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "Відкритий ключ" @@ -4690,10 +4690,10 @@ msgstr "Відкриті ключі" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4702,9 +4702,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR-код" @@ -4732,7 +4732,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "Запитання" @@ -4779,8 +4779,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Отримання" @@ -4793,13 +4793,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "Отримання" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4807,7 +4807,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "Адреса отримання" @@ -4820,11 +4820,11 @@ msgid "Recover from a seed you have previously written down" msgstr "Відновити з фрази-паролю (seed), яку ви раніше записали" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "Скрипт відновлення" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4846,10 +4846,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "Видалити" @@ -4871,20 +4871,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4896,17 +4896,17 @@ msgstr "Повідомлення про Проблеми" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "Запит протермінований" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "Запит на оплату" @@ -4922,7 +4922,7 @@ msgstr "Запит надіслано." msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "Запитувана сума" @@ -4930,8 +4930,8 @@ msgstr "Запитувана сума" msgid "Requestor" msgstr "Запитувач" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "Запити" @@ -4964,8 +4964,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5009,13 +5009,13 @@ msgstr "SSL-сертифікат використовується для під msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Зберегти" @@ -5023,8 +5023,8 @@ msgstr "Зберегти" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5040,7 +5040,7 @@ msgstr "Зберегти рахунок в файл" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5069,7 +5069,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "Тип скрипту" @@ -5087,11 +5087,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5104,8 +5104,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "" @@ -5113,7 +5113,7 @@ msgstr "" msgid "Seed Entered" msgstr "Фразу-пароль (seed) введено" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5173,7 +5173,7 @@ msgstr "Вибрати сервер автоматично" msgid "Select server manually" msgstr "Вибрати сервер вручну" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5198,9 +5198,9 @@ msgid "Select your transaction file" msgstr "Виберіть ваш файл транзакції" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Відправити" @@ -5232,7 +5232,7 @@ msgstr "" msgid "Send via e-mail" msgstr "Надіслати електронною поштою" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5245,7 +5245,7 @@ msgstr "Сервер" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5266,7 +5266,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "Сервер відстає ({} блоків)" @@ -5302,46 +5302,46 @@ msgstr "Встановити PIN-код" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "Налаштування" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "Показати" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5349,20 +5349,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "Показати фіатний баланс для адрес" @@ -5378,14 +5378,14 @@ msgstr "" msgid "Show QR Code" msgstr "Показати QR-код" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "Показати як QR-код" @@ -5398,11 +5398,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "Показати історію" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5477,7 +5477,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "Підписати" @@ -5485,12 +5485,12 @@ msgstr "Підписати" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "Підписати/верифікувати повідомлення" @@ -5503,7 +5503,7 @@ msgid "Signature" msgstr "Підпис" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "Підпис звірена" @@ -5524,17 +5524,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "Транзакція підписується..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "Підписання з адресою фактично означає підпис із відповідним приватним ключем та підтвердженням відповідного відкритого ключа. Введена вами адреса не має унікального відкритого ключа, тому ці операції не можуть бути виконані." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "Розмір:" @@ -5548,12 +5548,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "Вибачте!" @@ -5562,11 +5562,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "Джерело" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5579,11 +5579,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5599,20 +5599,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "Витрачати тільки підтверджені монети" @@ -5636,7 +5636,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5651,15 +5651,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "Статус" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "Статус:" @@ -5668,10 +5668,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "Успішно" @@ -5699,13 +5699,13 @@ msgstr "Замести закриті ключі" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Синхронізація..." @@ -5717,27 +5717,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "Гаманець TREZOR" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "Текст скопійовано в буфер обміну" @@ -5767,18 +5767,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "PIN-код не може перевищувати 9 символів." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5799,10 +5799,10 @@ msgstr "Розмір комісії може вільно бути визнач msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "Сума буде відображатися червоним кольором, якщо у вас недостатньо коштів у вашому гаманці." -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5854,7 +5854,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5863,11 +5863,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5919,20 +5919,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5944,7 +5944,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5960,7 +5960,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6036,7 +6036,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6062,11 +6062,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "Цей ланцюжок блоків використовується для перевірки трансакцій, надісланих вашим сервером трансакцій." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6099,17 +6099,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "Цей гаманець тільки для спостереження" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "Цей гаманець тільки для спостереження." @@ -6118,7 +6118,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "Це довжина вашої локальної копії ланцюжка блоків." @@ -6127,12 +6127,12 @@ msgid "This may result in higher transactions fees." msgstr "Це може привести до збільшення комісії за транзакції." #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "Цей запит платежу був підписаний." @@ -6140,14 +6140,14 @@ msgstr "Цей запит платежу був підписаний." msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "Цей плагін полегшує використання гаманців з мультипідписом." -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "Цей seed допоможе вам відновити гаманець в разі проблем з комп'ютером у майбутньому." @@ -6163,7 +6163,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6173,7 +6173,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6186,7 +6186,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "Ця операція не збережена. Закрити все одно?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6194,16 +6194,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "Цей гаманець без seed" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6242,30 +6242,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "Щоб допомогти нам діагностувати та виправити проблему, ви можете надіслати нам звіт про помилку який містить корисну інформацію про налагодження:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "Щоб переконатися, що Ви як слід зберегли Ваш seed, будь ласка, введіть його." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6285,9 +6285,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6311,7 +6311,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6319,25 +6319,25 @@ msgstr "" msgid "Total size" msgstr "Повний розмір" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "Транзакція" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6346,20 +6346,20 @@ msgid "Transaction ID" msgstr "ID транзакції" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "Ідентифікатор транзакції:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6375,7 +6375,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6388,8 +6388,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "Транзакція не пов'язана з Вашим гаманцем" @@ -6402,9 +6402,9 @@ msgid "Transaction:" msgstr "Транзакція:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "Транзакції" @@ -6425,11 +6425,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6438,8 +6438,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6463,7 +6463,7 @@ msgstr "Не вдалося створити csv" msgid "Unable to export history" msgstr "Неможливо експортувати історію" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6519,8 +6519,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "Розблокувати" @@ -6546,16 +6546,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "Невизначено" @@ -6563,7 +6563,7 @@ msgstr "Невизначено" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "Непідписано" @@ -6571,7 +6571,7 @@ msgstr "Непідписано" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6583,7 +6583,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "Невикористаний" @@ -6603,7 +6603,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6635,12 +6635,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "Використовувати Tor-проксі" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6649,18 +6649,18 @@ msgid "Use a hardware device" msgstr "Використовуйте апаратний пристрій" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "Використовувати як сервер" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "Використовувати адреси для здачі" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "Використовувати адреси, що змінюються" @@ -6676,24 +6676,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "Використовувати setconfig для встановлення ssl_chain та ssl_privkey." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "Використовуйте цей діалог для встановлення пароля до вашого гаманця." #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "Використовуйте це діалогове вікно щоб змінити свій пароль." #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "Використано" @@ -6713,7 +6713,7 @@ msgstr "Використання адрес для здачі ускладнює msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6726,7 +6726,7 @@ msgstr "" msgid "Verify" msgstr "Перевірити" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6784,11 +6784,11 @@ msgstr "Переглянути рахунок" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "Подивитися на блок-навігаторі" @@ -6804,7 +6804,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6813,7 +6813,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "УВАГА" @@ -6841,22 +6841,22 @@ msgstr "Гаманець" msgid "Wallet Information" msgstr "Інформація про гаманець" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6864,11 +6864,11 @@ msgstr "" msgid "Wallet backup created" msgstr "Резервна копія гаманця створена" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6884,15 +6884,15 @@ msgstr "" msgid "Wallet name" msgstr "Ім'я гаманця" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6900,7 +6900,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6908,7 +6908,7 @@ msgstr "" msgid "Wallet type" msgstr "Тип гаманця" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "Гаманці" @@ -6941,11 +6941,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "Під час підключення до вашого пристрою виникла помилка:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6994,32 +6994,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "Невірний тип ключа" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "Пошкоджена сигнатура" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "Так" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7029,7 +7029,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "Ви слідуєте лінії" @@ -7046,11 +7046,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7070,7 +7070,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7078,11 +7078,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7094,11 +7094,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7125,7 +7125,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7145,7 +7145,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7153,7 +7153,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "Ви повинні активувати захист за допомогою PIN-коду. Ваш PIN-код є єдиним захистом для ваших біткойнів, якщо ваш пристрій загублено або викрадено." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7175,13 +7175,13 @@ msgstr "Ваш гаманець Ledger хоче повідомити вам од msgid "Your accounts have been moved to" msgstr "Ваші облікові записи були переміщені в" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "Ваші біткойни захищені паролем, але ваш гаманець не зашифрований." @@ -7202,7 +7202,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7218,7 +7218,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7231,7 +7231,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "Ваш розширений seed є" @@ -7240,12 +7240,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "Ваше розширення фрази паролю (seed) має зберігатися разом з вашою фразою-паролем." #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "Ваш seed - це важливо!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "Ваш сервер на лінії" @@ -7258,7 +7258,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "Вашу транзакцію було надіслано до пулу співвласників." #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "Seed вашого гаманця:" @@ -7267,12 +7267,12 @@ msgid "Your wallet history has been successfully exported." msgstr "Історія вашого гаманця успішно експортована." #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "Ваш гаманець не захищений." #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "Ваш гаманець захищений паролем і зашифрований." @@ -7285,7 +7285,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "Нуль після десяткової крапки" @@ -7346,7 +7346,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7355,8 +7355,8 @@ msgid "are frozen" msgstr "заморожені" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "блоки" @@ -7364,8 +7364,8 @@ msgstr "блоки" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7377,7 +7377,7 @@ msgstr "поручитель" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7393,7 +7393,7 @@ msgstr "" msgid "initialized" msgstr "ініціалізовано" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7418,7 +7418,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "будь ласка, зачекайте..." @@ -7453,15 +7453,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "невизначено" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7482,7 +7482,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "тільки для спостереження" @@ -7490,7 +7490,7 @@ msgstr "тільки для спостереження" msgid "wiped" msgstr "очищений" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7559,15 +7559,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7575,7 +7575,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7583,11 +7583,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "{} отримано нових трансакцій: Загальна сума, отримана від нових трансакцій {}" @@ -7599,23 +7599,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/vi_VN/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/vi_VN/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/vi_VN/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/vi_VN/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/vi_VN/electron-cash.po b/contrib/electrum-locale/locale/vi_VN/vilight.po similarity index 78% rename from contrib/electrum-locale/locale/vi_VN/electron-cash.po rename to contrib/electrum-locale/locale/vi_VN/vilight.po index ca77e534d..a6def04d8 100644 --- a/contrib/electrum-locale/locale/vi_VN/electron-cash.po +++ b/contrib/electrum-locale/locale/vi_VN/vilight.po @@ -24,7 +24,7 @@ msgstr " (No FX rate available)" msgid " These settings affects the fields in the Send tab" msgstr " Thiết bị của chúng tôi" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr " sao chép vào clipboard" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d minutes" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "%d mã (s) hợp lệ" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "&Địa chỉ" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "0" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 tiếng" msgid "1 week" msgstr "1 tuần" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "Một bản sao của tập tin ví của bạn đã được tạo trong" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "Eine empfohlene Gebühr wird diesem Feld automatisch hinzugefügt, kann aber überschrieben werden. Die empfohlene Gebühr Steigt mit der Größe der Transaction." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "Một phần của chúng tôi Vui lòng với nhau và vui vẻ, vui vẻ." -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "Các khoản phí khác" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "Địa chỉ" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "số tiền" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "Betrag erhalten:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "Khoản đã gửi:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "10000000000" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "Export" @@ -717,7 +717,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -795,19 +795,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "Trở lại" @@ -815,9 +815,9 @@ msgstr "Trở lại" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "Tình trạng" @@ -852,7 +852,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "Đơn vị tính" @@ -864,7 +864,7 @@ msgstr "Đơn vị tính cho ví của bạn." msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -897,12 +897,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "Phát sóng" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "Đang phát sóng giao dịch..." @@ -918,7 +918,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -930,41 +930,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "Huỷ bỏ" @@ -989,7 +989,7 @@ msgstr "" msgid "Cancelled by user" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -997,12 +997,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1015,16 +1015,16 @@ msgstr "" msgid "Cannot read file" msgstr "Không thể đọc tệp" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1193,25 +1193,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1227,8 +1227,8 @@ msgstr "" msgid "Change Password" msgstr "Đổi mật khẩu" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1264,7 +1264,7 @@ msgstr "" msgid "Child pays for parent" msgstr "GD con trả cho GD mẹ (CPFP)" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1285,7 +1285,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "Chọn một mật khẩu để mã hoá các khoá của ví bạn." -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1324,8 +1324,8 @@ msgstr "Chọn một dịch vụ truy xuất khối trực tuyến để dùng c msgid "Choose..." msgstr "Chọn..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "Xoá" @@ -1376,7 +1376,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1409,7 +1409,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1425,7 +1425,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1441,7 +1441,7 @@ msgstr "Dòng &lệnh" msgid "Con&tacts" msgstr "Danh &bạ" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1465,7 +1465,7 @@ msgstr "Xác nhận hạt giống" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1477,7 +1477,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1550,13 +1550,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1577,34 +1577,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "Danh bạ" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1622,10 +1622,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1650,7 +1650,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1658,7 +1658,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Copy URI" msgstr "Sao chép URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1686,7 +1686,7 @@ msgstr "" msgid "Copy and Close" msgstr "Sao chép và đóng" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1695,8 +1695,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "Sao chép vào bộ nhớ tạm" @@ -1763,7 +1763,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Create" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1780,7 +1780,7 @@ msgstr "" msgid "Create a new seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1838,8 +1838,8 @@ msgstr "Tối/Sáng" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "Ngày" @@ -1870,15 +1870,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "Xoá" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1890,12 +1890,12 @@ msgstr "Xoá hoá đơn?" msgid "Delete wallet file?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1903,7 +1903,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1911,22 +1911,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "Mô tả" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "Mô tả giao dịch này (không bắt buộc)." #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "Chi tiết" @@ -1976,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1993,7 +1993,7 @@ msgid "Do not pair" msgstr "" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "Không lưu trữ nó trong các thiết bị điện tử." @@ -2025,24 +2025,24 @@ msgstr "" msgid "Do you wish to continue?" msgstr "Bạn có muốn tiếp tục không?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2060,15 +2060,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2084,17 +2084,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "Chỉnh sửa các khoản phí một cách thủ công" @@ -2108,7 +2108,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2117,7 +2117,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2125,7 +2125,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2149,7 +2149,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2190,7 +2190,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2289,12 +2289,12 @@ msgstr "Mã hoá" msgid "Encrypt wallet file" msgstr "Mã hoá tệp ví" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "Mã hóa/giải mã tin nhắn" @@ -2318,7 +2318,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2335,10 +2335,10 @@ msgid "Enter Passphrase" msgstr "Nhập mật khẩu" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "Nhập mật khẩu" @@ -2366,7 +2366,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "Nhập danh sách các người nhận trong trường 'Gửi tới'." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2398,11 +2398,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2434,7 +2434,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2465,17 +2465,17 @@ msgid "Enter your password or choose another file." msgstr "Nhập mật khẩu của bạn hoặc chọn tệp khác." #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "Nhập mật khẩu của bạn để tiếp tục" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2494,11 +2494,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "Lỗi" @@ -2530,7 +2530,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2567,7 +2567,7 @@ msgstr "" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2580,7 +2580,7 @@ msgid "Extend this seed with custom words" msgstr "" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2606,7 +2606,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "" @@ -2615,12 +2615,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "Phí" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2638,27 +2638,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "" @@ -2679,11 +2679,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2718,8 +2718,8 @@ msgid "Format: address, amount" msgstr "" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2761,11 +2761,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2777,7 +2777,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2805,24 +2805,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2859,10 +2859,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "" @@ -2874,11 +2874,11 @@ msgstr "" msgid "Here is your master public key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2905,8 +2905,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "" @@ -2959,7 +2959,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2980,7 +2980,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3009,7 +3009,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3054,12 +3054,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3076,12 +3076,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3091,14 +3091,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3134,19 +3134,19 @@ msgstr "" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3200,8 +3200,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "" @@ -3224,8 +3224,8 @@ msgid_plural "Inputs ({num_inputs})" msgstr[0] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "Import input 100000000000000000" @@ -3237,7 +3237,7 @@ msgstr "" msgid "Input raw transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "" @@ -3259,8 +3259,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "" @@ -3272,25 +3272,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "Địa chỉ không hợp lệ." #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "Số tiền không hợp lệ" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3323,9 +3323,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3334,7 +3334,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3346,7 +3346,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3366,7 +3366,7 @@ msgstr "" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3479,7 +3479,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3519,7 +3519,7 @@ msgstr "" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3572,12 +3572,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3593,16 +3593,16 @@ msgstr "" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3639,7 +3639,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "" @@ -3651,7 +3651,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3675,15 +3675,15 @@ msgstr "" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3693,12 +3693,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3711,11 +3711,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3728,7 +3728,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "" @@ -3738,7 +3738,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "" @@ -3747,7 +3747,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "" @@ -3756,8 +3756,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "Liên lạc mới." @@ -3765,19 +3765,19 @@ msgstr "Liên lạc mới." msgid "New Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3786,21 +3786,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3808,7 +3808,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3824,15 +3824,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "Không có ví nào" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3840,7 +3840,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3869,7 +3869,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "" @@ -3878,16 +3878,16 @@ msgid "No more addresses in your wallet." msgstr "" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3899,25 +3899,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "Không có gì" @@ -3925,7 +3925,7 @@ msgstr "Không có gì" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3947,8 +3947,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "Chưa kết nối." @@ -4005,18 +4005,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "Số không hiển thị sau dấu thập phân." #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "Đồng ý." @@ -4048,11 +4048,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "Ngoại tuyến" @@ -4087,13 +4087,13 @@ msgstr "" msgid "One output per line." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "" @@ -4121,11 +4121,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4145,12 +4145,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4163,12 +4163,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "" @@ -4177,8 +4177,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4192,7 +4192,7 @@ msgstr "" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "" @@ -4245,21 +4245,21 @@ msgstr "" msgid "Password" msgstr "Mật khẩu." -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "" @@ -4274,7 +4274,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "" @@ -4282,7 +4282,7 @@ msgstr "" msgid "Password:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4308,9 +4308,9 @@ msgid "Pay Now" msgstr "" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "Trả cho." @@ -4322,21 +4322,21 @@ msgstr "" msgid "Payment Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "Yêu cầu thanh toán đã hết hạn" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "Đã gửi tiền." @@ -4365,7 +4365,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4397,7 +4397,7 @@ msgstr "" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4431,19 +4431,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4464,7 +4464,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4477,7 +4477,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4501,8 +4501,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "" @@ -4520,7 +4520,7 @@ msgstr "" msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4553,7 +4553,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "" @@ -4561,7 +4561,7 @@ msgstr "" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4590,7 +4590,7 @@ msgstr "" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "" @@ -4598,14 +4598,14 @@ msgstr "" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "" @@ -4622,7 +4622,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "" @@ -4667,7 +4667,7 @@ msgid "Proxy user" msgstr "" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "" @@ -4679,10 +4679,10 @@ msgstr "" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4691,9 +4691,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "" @@ -4721,7 +4721,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4767,8 +4767,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "Nhận" @@ -4781,13 +4781,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4795,7 +4795,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "" @@ -4808,11 +4808,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4834,10 +4834,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "" @@ -4859,20 +4859,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4884,17 +4884,17 @@ msgstr "" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4910,7 +4910,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "" @@ -4918,8 +4918,8 @@ msgstr "" msgid "Requestor" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "" @@ -4952,8 +4952,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -4997,13 +4997,13 @@ msgstr "" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "Lưu" @@ -5011,8 +5011,8 @@ msgstr "Lưu" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5028,7 +5028,7 @@ msgstr "" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5057,7 +5057,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5075,11 +5075,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5092,8 +5092,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "Hạt giống" @@ -5101,7 +5101,7 @@ msgstr "Hạt giống" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5161,7 +5161,7 @@ msgstr "" msgid "Select server manually" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5186,9 +5186,9 @@ msgid "Select your transaction file" msgstr "" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "Gửi" @@ -5220,7 +5220,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5233,7 +5233,7 @@ msgstr "" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5254,7 +5254,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5290,46 +5290,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5337,20 +5337,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5366,14 +5366,14 @@ msgstr "" msgid "Show QR Code" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "" @@ -5386,11 +5386,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5465,7 +5465,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "" @@ -5473,12 +5473,12 @@ msgstr "" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "" @@ -5491,7 +5491,7 @@ msgid "Signature" msgstr "" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "" @@ -5512,17 +5512,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "" #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "" @@ -5536,12 +5536,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5550,11 +5550,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5567,11 +5567,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5587,20 +5587,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "" @@ -5624,7 +5624,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5639,15 +5639,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "" @@ -5656,10 +5656,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "" @@ -5687,13 +5687,13 @@ msgstr "" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "Đang đồng bộ..." @@ -5705,27 +5705,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5755,18 +5755,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5787,10 +5787,10 @@ msgstr "" msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5841,7 +5841,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5850,11 +5850,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5906,20 +5906,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5931,7 +5931,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5947,7 +5947,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6022,7 +6022,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6048,11 +6048,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6085,17 +6085,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6104,7 +6104,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "" @@ -6113,12 +6113,12 @@ msgid "This may result in higher transactions fees." msgstr "" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "" @@ -6126,14 +6126,14 @@ msgstr "" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "" @@ -6149,7 +6149,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6159,7 +6159,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6172,7 +6172,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6180,16 +6180,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6228,30 +6228,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6271,9 +6271,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6297,7 +6297,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6305,25 +6305,25 @@ msgstr "" msgid "Total size" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6332,20 +6332,20 @@ msgid "Transaction ID" msgstr "" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6361,7 +6361,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6374,8 +6374,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "" @@ -6388,9 +6388,9 @@ msgid "Transaction:" msgstr "" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "" @@ -6411,11 +6411,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6424,8 +6424,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6449,7 +6449,7 @@ msgstr "" msgid "Unable to export history" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6505,8 +6505,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6532,16 +6532,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "" @@ -6549,7 +6549,7 @@ msgstr "" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6557,7 +6557,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6569,7 +6569,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6589,7 +6589,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6621,12 +6621,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6635,18 +6635,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "" @@ -6662,24 +6662,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6699,7 +6699,7 @@ msgstr "" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6712,7 +6712,7 @@ msgstr "" msgid "Verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6764,11 +6764,11 @@ msgstr "" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "" @@ -6784,7 +6784,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6793,7 +6793,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "" @@ -6821,22 +6821,22 @@ msgstr "" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6844,11 +6844,11 @@ msgstr "" msgid "Wallet backup created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6864,15 +6864,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6880,7 +6880,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6888,7 +6888,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6919,11 +6919,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6972,32 +6972,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7007,7 +7007,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "" @@ -7024,11 +7024,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7048,7 +7048,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7056,11 +7056,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7072,11 +7072,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7103,7 +7103,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7123,7 +7123,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7131,7 +7131,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7152,13 +7152,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "" @@ -7179,7 +7179,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7195,7 +7195,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7208,7 +7208,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "" @@ -7217,12 +7217,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "" @@ -7235,7 +7235,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "" @@ -7244,12 +7244,12 @@ msgid "Your wallet history has been successfully exported." msgstr "" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "" @@ -7262,7 +7262,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "" @@ -7323,7 +7323,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7332,8 +7332,8 @@ msgid "are frozen" msgstr "" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "" @@ -7341,8 +7341,8 @@ msgstr "" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7354,7 +7354,7 @@ msgstr "" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7370,7 +7370,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7395,7 +7395,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "" @@ -7430,15 +7430,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7459,7 +7459,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "" @@ -7467,7 +7467,7 @@ msgstr "" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7530,15 +7530,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7546,7 +7546,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7554,11 +7554,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7570,23 +7570,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/zh_CN/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/zh_CN/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/zh_CN/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/zh_CN/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/zh_CN/electron-cash.po b/contrib/electrum-locale/locale/zh_CN/vilight.po similarity index 80% rename from contrib/electrum-locale/locale/zh_CN/electron-cash.po rename to contrib/electrum-locale/locale/zh_CN/vilight.po index 953310205..efeec3921 100644 --- a/contrib/electrum-locale/locale/zh_CN/electron-cash.po +++ b/contrib/electrum-locale/locale/zh_CN/vilight.po @@ -24,7 +24,7 @@ msgstr " (无可用汇率)" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr " %2d 分钟" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "地址(&A)" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 小时" msgid "1 week" msgstr "1 周" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "您钱包的副本文件已经保存在" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "这里会自动填写一个建议的手续费数值。你可以改成自己想要的数值。对于更大的交易,推荐的手续费会更高。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "在密码对话框中添加一个可选的虚拟键盘。" msgid "Add cosigner" msgstr "添加联署人" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "附加费用:" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "地址" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "地址已被冻结" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "地址不在钱包里。" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "禁用附加密码后,您只能使用空白的附加密码与硬件钱包配对。如果您设置的附加密码不为空,则需要使用安装向导重新创建新的钱包来完成配对。 您可以随时重新启用附加密码,输入原先的附加密码即可重新使用这个附加密码对应的钱包。" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "所有" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "已是最新版" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "金额" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "OP_RETURN输出的金额必须为零。" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "收到的金额:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "发送的金额:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "将要发送的金额。" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "检测到尚未初始化的硬件钱包。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "未命名的{}" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "界面外观" @@ -718,7 +718,7 @@ msgstr "您确定要继续吗?" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -738,7 +738,7 @@ msgstr "音频调制解调器" msgid "Audio Modem Settings" msgstr "音频调制解调器选项" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -796,19 +796,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "返回" @@ -816,9 +816,9 @@ msgstr "返回" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "余额" @@ -853,7 +853,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "基本单位" @@ -865,7 +865,7 @@ msgstr "您的钱包使用的基本单位。" msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -898,12 +898,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "广播" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "正在广播交易..." @@ -919,7 +919,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -931,41 +931,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "取消" @@ -990,7 +990,7 @@ msgstr "" msgid "Cancelled by user" msgstr "已被用户取消" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -998,12 +998,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "不能添加此联署人:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1016,16 +1016,16 @@ msgstr "不能发现python库" msgid "Cannot read file" msgstr "无法读取文件" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "不能用这种类型的地址签署信息。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1102,7 +1102,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1194,25 +1194,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "找零" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1228,8 +1228,8 @@ msgstr "更改PIN码" msgid "Change Password" msgstr "更改密码:" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1265,7 +1265,7 @@ msgstr "使用父子交易(CPFP)追加手续费" msgid "Child pays for parent" msgstr "用于追加手续费的父子交易(CPFP)" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1286,7 +1286,7 @@ msgstr "选择备份文件:" msgid "Choose a password to encrypt your wallet keys." msgstr "输入用来加密您的钱包的密码" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1327,8 +1327,8 @@ msgstr "打开网页浏览器,选择使用在线区块查询功能。" msgid "Choose..." msgstr "选择..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "清除" @@ -1379,7 +1379,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1412,7 +1412,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1428,7 +1428,7 @@ msgstr "" msgid "Color theme" msgstr "主题颜色" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1444,7 +1444,7 @@ msgstr "控制台(&S)" msgid "Con&tacts" msgstr "联系人(&T)" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1468,7 +1468,7 @@ msgstr "确认密语种子" msgid "Confirm Seed Extension" msgstr "确认种子扩展密语" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1480,7 +1480,7 @@ msgstr "确认开启/关闭附加密码" msgid "Confirm Transaction on your {}..." msgstr "在您的{}上确认交易..." -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1553,13 +1553,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "已连接节点" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "已连接到%d 个节点。" @@ -1580,34 +1580,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "联系人" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1625,10 +1625,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1653,7 +1653,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1661,7 +1661,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1681,7 +1681,7 @@ msgstr "" msgid "Copy URI" msgstr "复制 URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1689,7 +1689,7 @@ msgstr "" msgid "Copy and Close" msgstr "复制并关闭" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1698,8 +1698,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "复制到剪切板" @@ -1766,7 +1766,7 @@ msgstr "未能签名消息" msgid "Could not sign message." msgstr "未能签名消息。" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "崩溃报告" @@ -1774,8 +1774,8 @@ msgstr "崩溃报告" msgid "Create" msgstr "创建" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1783,7 +1783,7 @@ msgstr "" msgid "Create a new seed" msgstr "创建一个新的密语种子" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1841,8 +1841,8 @@ msgstr "暗/亮" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "日期" @@ -1873,15 +1873,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "删除" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1893,12 +1893,12 @@ msgstr "删除收据?" msgid "Delete wallet file?" msgstr "删除钱包文件?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1906,7 +1906,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1914,22 +1914,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "说明" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "交易说明(非必填项)。" #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "详细" @@ -1979,7 +1979,7 @@ msgstr "停用附加密码" msgid "Disabled" msgstr "已停用" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1996,7 +1996,7 @@ msgid "Do not pair" msgstr "无法配对" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "不要留电子版。" @@ -2028,24 +2028,24 @@ msgstr "您想要发送这个报告吗?" msgid "Do you wish to continue?" msgstr "确认继续吗?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2063,15 +2063,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2087,17 +2087,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "手动指定手续费" @@ -2111,7 +2111,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2120,7 +2120,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "ViLight 与远程服务器通讯以获取您的交易记录和地址信息。这些服务器都能实现相同的功能,只是硬件条件各有不同。在大多数情况下,你只需要让 ViLight 随便挑一个节点,如果你有一个偏好设置,随时都可以手动选择服务器。" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "ViLight 会连接数个节点以下载区块头并找出最长的区块链。" @@ -2128,7 +2128,7 @@ msgstr "ViLight 会连接数个节点以下载区块头并找出最长的区块 msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2152,7 +2152,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "ViLight 通过把您的钱包地址发送到一台服务器来获得您的交易记录。" @@ -2193,7 +2193,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "ViLight 无法打开您的交易文件" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "ViLight 无法解析您的交易" @@ -2292,12 +2292,12 @@ msgstr "加密" msgid "Encrypt wallet file" msgstr "加密钱包文件" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "加密/解密消息" @@ -2321,7 +2321,7 @@ msgstr "目前不支持{} 的加密和解密" msgid "Encryption and decryption are not implemented by {}" msgstr "加密和解密未被{} 实现" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2338,10 +2338,10 @@ msgid "Enter Passphrase" msgstr "输入附加密码" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "输入密码" @@ -2369,7 +2369,7 @@ msgstr "在列表中输入比特币現金地址(这将创建一个仅供监视 msgid "Enter a list of outputs in the 'Pay to' field." msgstr "在'付给'输入框填写输出列表。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2401,11 +2401,11 @@ msgstr "输入联署人的密钥" msgid "Enter cosigner seed" msgstr "输入联署人的密语种子" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2438,7 +2438,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de msgstr "根据显示在设备屏幕上的内容点击按钮,以输入恢复密语。您也可以使用数字小键盘。\n" "按下退格键退回到上一个选项或者单词。\n" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2469,17 +2469,17 @@ msgid "Enter your password or choose another file." msgstr "请输入密码或选择另一个文件。" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "请输入您的密码以继续。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2498,11 +2498,11 @@ msgstr "擦除Digital Bitbox的数据" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "错误" @@ -2534,7 +2534,7 @@ msgstr "错误: 重复的主公钥" msgid "Exit ViLight" msgstr "退出 ViLight" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2571,7 +2571,7 @@ msgstr "导出历史记录" msgid "Export file" msgstr "导出文件" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2584,7 +2584,7 @@ msgid "Extend this seed with custom words" msgstr "用自定义单词扩展这个种子" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2610,7 +2610,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "未能将交易发送到联署池。" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "无法更新密码" @@ -2619,12 +2619,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "费用" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2642,27 +2642,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "手续费" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "法定货币" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "法定货币" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "文件" @@ -2683,11 +2683,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "跟随这条分叉链" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2722,8 +2722,8 @@ msgid "Format: address, amount" msgstr "格式: 地址, 总额" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "冻结" @@ -2765,11 +2765,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2781,7 +2781,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "启用完整的双因子认证。目前尚不支持。" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "存有资金" @@ -2809,24 +2809,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "随机生成一个新的钱包" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2863,10 +2863,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "高度" @@ -2878,11 +2878,11 @@ msgstr "" msgid "Here is your master public key." msgstr "这是您的主公钥" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2909,8 +2909,8 @@ msgstr "主屏" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "主机" @@ -2963,7 +2963,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "如果自动连接已启用,ViLight 将总是使用拥有最长的数据区块链的服务器。" @@ -2984,7 +2984,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "如果不勾选此项,那您就必须手动选择要使用哪个服务器。 如果你的服务器滞后,ViLight会发出警告。" @@ -3013,7 +3013,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "如果您不确定这是什么,请不要改动这个输入框的内容。" @@ -3058,12 +3058,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3080,12 +3080,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "如果您的钱包还保存有资金,请确保您已经保存了它的密语种子。" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3095,14 +3095,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "导入" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3110,7 +3110,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "导入比特币地址" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "导入比特币現金地址或私钥" @@ -3138,19 +3138,19 @@ msgstr "导入私钥" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3204,8 +3204,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "消息" @@ -3228,8 +3228,8 @@ msgid_plural "Inputs ({num_inputs})" msgstr[0] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "输入金额" @@ -3241,7 +3241,7 @@ msgstr "" msgid "Input raw transaction" msgstr "输入原始交易" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "输入" @@ -3263,8 +3263,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "资金不足" @@ -3276,25 +3276,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "地址无效" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "金额无效" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "比特币現金地址无效" @@ -3327,9 +3327,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3338,7 +3338,7 @@ msgid "Invalid amount" msgstr "无效的金额" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3350,7 +3350,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3370,7 +3370,7 @@ msgstr "收据" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3483,7 +3483,7 @@ msgstr "老式地址" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3523,7 +3523,7 @@ msgstr "载入交易" msgid "Loading backup..." msgstr "加载备份..." -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3576,12 +3576,12 @@ msgstr "在您使用这个钱包请求付款之前,请再三确定您持有对 msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3597,16 +3597,16 @@ msgstr "主公钥" msgid "Matrix" msgstr "矩阵(高级恢复)" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "最大值" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "超出最高手续费" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3643,7 +3643,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "挖矿费用" @@ -3655,7 +3655,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "手机配对设置" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3679,15 +3679,15 @@ msgstr "多重签名钱包" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3697,12 +3697,12 @@ msgstr "不是设备PIN - 请参阅上文" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "名称" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3715,11 +3715,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "网络" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3732,7 +3732,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "永不" @@ -3742,7 +3742,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "请妥善保存您的密语种子,千万别透露给别人。" @@ -3751,7 +3751,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "也不要在任何网站键入它。" @@ -3760,8 +3760,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "新建联系人" @@ -3769,19 +3769,19 @@ msgstr "新建联系人" msgid "New Password:" msgstr "新密码:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "新建联系人" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "新的交易已接收:{}" @@ -3790,21 +3790,21 @@ msgid "New transaction: {}" msgstr "收到新交易: {}" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "下一步" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "无" @@ -3812,7 +3812,7 @@ msgstr "无" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3828,15 +3828,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "无钱包" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3844,7 +3844,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3873,7 +3873,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "缺少消息或金额" @@ -3882,16 +3882,16 @@ msgid "No more addresses in your wallet." msgstr "你的钱包中没有更多的地址。" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "无此输出" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3903,25 +3903,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "无" @@ -3929,7 +3929,7 @@ msgstr "无" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3951,8 +3951,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "无连接" @@ -4009,18 +4009,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "小数点后的位数。例如,若此项设置为 2,则“1”将会显示未“1.00”" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "确认" @@ -4052,11 +4052,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "离线" @@ -4091,13 +4091,13 @@ msgstr "" msgid "One output per line." msgstr "每行一个输出。" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "在线区块浏览器" @@ -4125,11 +4125,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "只有在您已经抄好密语种子,或者确定钱包是空的时候,才可以擦除硬件钱包,否则会永久丢币。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4149,12 +4149,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "OpenAlias记录,用于接收货币并且签署付款请求。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4167,12 +4167,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "选项" @@ -4181,8 +4181,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "过期的{}固件存在于标有{}的设备。请从{}下载最新的固件" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4196,7 +4196,7 @@ msgstr "输出数量" msgid "Output point" msgstr "输出点" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "输出" @@ -4249,21 +4249,21 @@ msgstr "附加密码(passphrase)严格区分大小写。每个不同的附加密 msgid "Password" msgstr "密码" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "密钥强度" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "密码被停用,此钱包没有被保护。" @@ -4278,7 +4278,7 @@ msgid "Password must have less than 64 characters." msgstr "密码必须少于64个字符。" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "密码已成功更新" @@ -4286,7 +4286,7 @@ msgstr "密码已成功更新" msgid "Password:" msgstr "密码:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4312,9 +4312,9 @@ msgid "Pay Now" msgstr "立即付款" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "支付给" @@ -4326,21 +4326,21 @@ msgstr "多方支付" msgid "Payment Request" msgstr "付款请求" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "付款请求已超时" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "付款已发送。" @@ -4369,7 +4369,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "请简要描述导致错误的原因(可选):" @@ -4401,7 +4401,7 @@ msgstr "请输入属于您联署人的主公钥(xpub)。" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4435,19 +4435,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4468,7 +4468,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "请将这%d 个单词依次写在纸上(不要擅自打乱顺序、也不要重新排序)。 " @@ -4481,7 +4481,7 @@ msgstr "请选择使用哪个{}设备:" msgid "Please share it with your cosigners." msgstr "请与把它分享给您的联署人。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4505,8 +4505,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "请稍后" @@ -4524,7 +4524,7 @@ msgstr "请稍候..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4557,7 +4557,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "端口" @@ -4565,7 +4565,7 @@ msgstr "端口" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4594,7 +4594,7 @@ msgstr "按'下一步'打开这个钱包" msgid "Press Enter" msgstr "按下回车键。" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "预览" @@ -4602,14 +4602,14 @@ msgstr "预览" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "私钥" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "私钥" @@ -4626,7 +4626,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "要继续吗?" @@ -4671,7 +4671,7 @@ msgid "Proxy user" msgstr "代理用户" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "公钥" @@ -4683,10 +4683,10 @@ msgstr "公钥" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4695,9 +4695,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "二维码" @@ -4725,7 +4725,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "问题" @@ -4772,8 +4772,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "接收" @@ -4786,13 +4786,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "收款" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4800,7 +4800,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "收款地址" @@ -4813,11 +4813,11 @@ msgid "Recover from a seed you have previously written down" msgstr "利用您之前抄下的密语种子进行恢复" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "兑换脚本" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4839,10 +4839,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "删除" @@ -4864,20 +4864,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "报告内容" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "已发送报告" @@ -4889,17 +4889,17 @@ msgstr "报告错误" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "过期时间" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "请求付款" @@ -4915,7 +4915,7 @@ msgstr "已发送请求。" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "请求的金额" @@ -4923,8 +4923,8 @@ msgstr "请求的金额" msgid "Requestor" msgstr "请求者" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "请求" @@ -4957,8 +4957,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -5002,13 +5002,13 @@ msgstr "SSL证书用于签署付款请求。" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "保存" @@ -5016,8 +5016,8 @@ msgstr "保存" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5033,7 +5033,7 @@ msgstr "将收据保存到文件" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "将您的钱包标签保存在远程服务器上,并在使用ViLight的多个设备上同步它们。" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5062,7 +5062,7 @@ msgid "Scrambled words" msgstr "打乱单词顺序" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "脚本类型" @@ -5080,11 +5080,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5097,8 +5097,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "密语种子" @@ -5106,7 +5106,7 @@ msgstr "密语种子" msgid "Seed Entered" msgstr "已输入密语种子" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5166,7 +5166,7 @@ msgstr "自动选择服务器" msgid "Select server manually" msgstr "手动选择服务器" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5191,9 +5191,9 @@ msgid "Select your transaction file" msgstr "选择您的交易文件" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "发送" @@ -5225,7 +5225,7 @@ msgstr "用喇叭发送" msgid "Send via e-mail" msgstr "通过电子邮件发送" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5238,7 +5238,7 @@ msgstr "服务器" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5259,7 +5259,7 @@ msgid "Server hosting your email account" msgstr "托管您电子邮件帐户的服务器" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "服务器滞后 ( {} 个区块)" @@ -5295,46 +5295,46 @@ msgstr "设置 PIN 码" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "设置" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "显示" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5342,20 +5342,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "显示地址的法币余额" @@ -5371,14 +5371,14 @@ msgstr "" msgid "Show QR Code" msgstr "显示二维码" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "显示为二维码" @@ -5391,11 +5391,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "显示历史手续费水平" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5470,7 +5470,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "签名" @@ -5478,12 +5478,12 @@ msgstr "签名" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "签名/验证消息" @@ -5496,7 +5496,7 @@ msgid "Signature" msgstr "签名" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "签名已验证" @@ -5517,17 +5517,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "正在签名交易..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "用地址签名实际上是用相应的私钥签名,并用相应的公钥进行验证。你输入的地址公钥并不唯一,因此无法执行这些操作。" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "大小:" @@ -5541,12 +5541,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "执行ViLight时出现错误。很抱歉。" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "抱歉!" @@ -5555,11 +5555,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "抱歉,我们无法检查更新。请过一会再试试。" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "数据来源" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5572,11 +5572,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "动用" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "动用这个地址上的币" @@ -5592,20 +5592,20 @@ msgstr "" msgid "Spend from" msgstr "支付启于" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "只动用交易已被确认的币" @@ -5629,7 +5629,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "标准钱包" @@ -5644,15 +5644,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "状态" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "状态:" @@ -5661,10 +5661,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "步骤{}/24。按照{}中的说明输入密语种子:" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "成功" @@ -5692,13 +5692,13 @@ msgstr "将私钥上保存的币扫入钱包" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "同步中..." @@ -5710,27 +5710,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "TREZOR钱包" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "已复制文本到剪贴板" @@ -5760,18 +5760,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "PIN不能超过9个字符。" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5792,10 +5792,10 @@ msgstr "手续费的多少由付款人决定。然而,交易手续费越低, msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "如果您的钱包资金不足,金额会被显示为红色。" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5847,7 +5847,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5856,11 +5856,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5912,20 +5912,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5937,7 +5937,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5953,7 +5953,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6029,7 +6029,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6055,11 +6055,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "这条区块链被用于验证从服务器发给您的交易。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6092,17 +6092,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "这是一个仅供监视的钱包" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "这是一个仅供监视的钱包。" @@ -6111,7 +6111,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "这是您区块链本地副本的高度。" @@ -6120,12 +6120,12 @@ msgid "This may result in higher transactions fees." msgstr "这会导致手续费变得更高。" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "这意味着你无法把里面的比特币現金花出去。" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "付款请求将被签名" @@ -6133,14 +6133,14 @@ msgstr "付款请求将被签名" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "此插件让多重签名钱包便于使用。" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "在您的电脑发生故障时,密语种子让您可以在其他设备上恢复钱包。" @@ -6156,7 +6156,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6166,7 +6166,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6179,7 +6179,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "交易未保存,仍然关闭?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6187,16 +6187,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "这种类型的脚本不支持{}。" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "这个钱包没有密语种子" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6235,30 +6235,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "要继续,请触摸Digital Bitbox的指示灯3秒钟。" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "要创建可直接动用资金的钱包,请输入主私钥(xprv / yprv / zprv)。" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "要创建仅供监视的钱包,请输入您的主公钥(xpub / ypub / zpub)。" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "为了帮助我们诊断和修复问题,您可以给我们发送一个包含有用调试信息的bug报告:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "为确保您已经将密语种子正确保存,请再把它输入一遍。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6278,9 +6278,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6304,7 +6304,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6312,25 +6312,25 @@ msgstr "" msgid "Total size" msgstr "总大小" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "交易" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6339,20 +6339,20 @@ msgid "Transaction ID" msgstr "交易 ID" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "交易 ID:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6368,7 +6368,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6381,8 +6381,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "与您的钱包无关的交易" @@ -6395,9 +6395,9 @@ msgid "Transaction:" msgstr "交易:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "交易" @@ -6418,11 +6418,11 @@ msgid "Tx" msgstr "交易" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "类型" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6431,8 +6431,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6456,7 +6456,7 @@ msgstr "无法创建CSV" msgid "Unable to export history" msgstr "无法导出历史记录" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6512,8 +6512,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "解冻" @@ -6539,16 +6539,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "未知" @@ -6556,7 +6556,7 @@ msgstr "未知" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "未签名" @@ -6564,7 +6564,7 @@ msgstr "未签名" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6576,7 +6576,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "未使用" @@ -6596,7 +6596,7 @@ msgstr "" msgid "Update check failed" msgstr "检查更新失败" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6628,12 +6628,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "使用Tor代理" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6642,18 +6642,18 @@ msgid "Use a hardware device" msgstr "使用硬件设备" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "用作服务器" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "使用新的找零地址" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "使用多个找零地址" @@ -6669,24 +6669,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "用setconfig来设置ssl_chain和ssl_privkey。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "在这个对话框中给您的钱包设置一个密码。" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "在这个对话框中修改您的密码。" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "用过" @@ -6706,7 +6706,7 @@ msgstr "使用新的找零地址可以让别人更难跟踪你的交易。" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6719,7 +6719,7 @@ msgstr "" msgid "Verify" msgstr "验证" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6771,11 +6771,11 @@ msgstr "查看收据" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "使用区块浏览器查看" @@ -6791,7 +6791,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6800,7 +6800,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "警告" @@ -6828,22 +6828,22 @@ msgstr "钱包" msgid "Wallet Information" msgstr "钱包信息" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6851,11 +6851,11 @@ msgstr "" msgid "Wallet backup created" msgstr "钱包备份已创建" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6871,15 +6871,15 @@ msgstr "" msgid "Wallet name" msgstr "钱包名称" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6887,7 +6887,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "已移除钱包:{}" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6895,7 +6895,7 @@ msgstr "" msgid "Wallet type" msgstr "钱包类型" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "钱包" @@ -6928,11 +6928,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "我们在连接到您的设备时遇到错误:" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6981,32 +6981,32 @@ msgid "Write down the seed word shown on your {}" msgstr "写下你的种子单词并展示在你的{}" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "密钥类型错误" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "签名错误" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "是" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7016,7 +7016,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "您正在跟随分叉链" @@ -7033,11 +7033,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7057,7 +7057,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7065,11 +7065,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7081,11 +7081,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "没有密码您就不能使用您的币或钱包备份。" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7112,7 +7112,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7132,7 +7132,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7140,7 +7140,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "您应该启用PIN保护。如果您的设备遗失或被盗,PIN是保护您比特币的唯一措施。" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7163,13 +7163,13 @@ msgstr "你的Ledger硬件钱包会输出一次性PIN码。

为了获得 msgid "Your accounts have been moved to" msgstr "您的账户已被移至" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "您的比特币被密码保护。但是您的钱包文件没有加密。" @@ -7190,7 +7190,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7206,7 +7206,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7219,7 +7219,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "你的种子扩展密语是" @@ -7228,12 +7228,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "你的种子扩展密语必须与你的种子一起被保存。" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "你的密语种子至关重要!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "您的服务器正处在分叉链上" @@ -7246,7 +7246,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "你的交易已发送到联署池。" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "生成您的钱包密语种子是:" @@ -7255,12 +7255,12 @@ msgid "Your wallet history has been successfully exported." msgstr "您的钱包历史记录已成功导出。" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "你的钱包没有被保护。" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "你的钱包被密码保护并被加密。" @@ -7273,7 +7273,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "小数点后的零的个数" @@ -7334,7 +7334,7 @@ msgstr "[s] - 发送存储的支付订单" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7343,8 +7343,8 @@ msgid "are frozen" msgstr "被冻结" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "区块" @@ -7352,8 +7352,8 @@ msgstr "区块" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7365,7 +7365,7 @@ msgstr "联署人" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7381,7 +7381,7 @@ msgstr "" msgid "initialized" msgstr "已初始化" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7406,7 +7406,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "请稍候..." @@ -7441,15 +7441,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "未知" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7470,7 +7470,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "仅供监视" @@ -7478,7 +7478,7 @@ msgstr "仅供监视" msgid "wiped" msgstr "已擦除" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7541,15 +7541,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7557,7 +7557,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7565,11 +7565,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "收到了{} 笔新的交易,共收到新交易 {}" @@ -7581,23 +7581,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/electrum-locale/locale/zh_TW/LC_MESSAGES/electron-cash.mo b/contrib/electrum-locale/locale/zh_TW/LC_MESSAGES/vilight.mo similarity index 100% rename from contrib/electrum-locale/locale/zh_TW/LC_MESSAGES/electron-cash.mo rename to contrib/electrum-locale/locale/zh_TW/LC_MESSAGES/vilight.mo diff --git a/contrib/electrum-locale/locale/zh_TW/electron-cash.po b/contrib/electrum-locale/locale/zh_TW/vilight.po similarity index 79% rename from contrib/electrum-locale/locale/zh_TW/electron-cash.po rename to contrib/electrum-locale/locale/zh_TW/vilight.po index 60a40c923..0c3218e82 100644 --- a/contrib/electrum-locale/locale/zh_TW/electron-cash.po +++ b/contrib/electrum-locale/locale/zh_TW/vilight.po @@ -24,7 +24,7 @@ msgstr " (匯率資訊不可用)" msgid " These settings affects the fields in the Send tab" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2169 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2169 msgid " copied to clipboard" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "%2d minutes" msgstr "%2d 分鐘" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 #, python-format msgid "%d valid item(s)" msgstr "" @@ -56,7 +56,7 @@ msgid "&Address to convert" msgstr "" #: gui/qt/main_window.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:313 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:313 msgid "&Addresses" msgstr "位址(&A)" @@ -293,7 +293,7 @@ msgstr "" msgid "(Only deterministic wallets are supported)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:307 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:307 msgid "(Script Output)" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "+" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:974 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:974 msgid "..." msgstr "" @@ -346,7 +346,7 @@ msgstr "1 小時" msgid "1 week" msgstr "1 週" -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:164 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:164 msgid ":" msgstr "" @@ -389,11 +389,11 @@ msgstr "" msgid "A copy of your wallet file was created in" msgstr "您的錢包檔案副本已建立於" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1175 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1175 msgid "A deterministic wallet will be created using the provided master private key. This wallet will be able to freely send and receive Vitae." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1173 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1173 msgid "A deterministic wallet will be created using the provided master public key. This wallet will be watching-only." msgstr "" @@ -425,15 +425,15 @@ msgstr "" msgid "A suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction." msgstr "建議的手續費會自動加入到此欄位中。您可以手動蓋過這個數值。建議的手續費會隨著交易的大小而增加。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:234 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:234 msgid "A wallet with that name already exist. Please enter a different wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:573 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:573 msgid "A wallet with that name already exists, please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1751 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1751 msgid "A wallet with that name already exists. Cannot proceed." msgstr "" @@ -489,12 +489,12 @@ msgstr "" msgid "Add cosigner" msgstr "加入共同簽署者" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:208 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:208 msgid "Add new wallet" msgstr "" #: gui/qt/cashacctqt.py:603 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:338 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:338 msgid "Add to Contacts" msgstr "" @@ -507,7 +507,7 @@ msgid "Adding {} of {} new addresses to wallet..." msgstr "" #: gui/qt/main_window.py:2075 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:858 +#: ios/Vilight/vilight_gui/ios_native/send.py:858 msgid "Additional fees" msgstr "額外手續費" @@ -521,23 +521,23 @@ msgstr "" #: gui/qt/address_list.py:330 gui/qt/address_dialog.py:48 #: gui/qt/utxo_list.py:56 gui/qt/contact_list.py:58 gui/qt/contact_list.py:235 #: gui/qt/contact_list.py:386 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:571 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:55 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:60 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:571 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:55 +#: ios/Vilight/vilight_gui/ios_native/receive.py:641 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:60 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 msgid "Address" msgstr "位址" #: gui/qt/main_window.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:22 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:226 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:22 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:226 msgid "Address Converter" msgstr "" #: gui/qt/transaction_dialog.py:736 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:630 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:332 +#: ios/Vilight/vilight_gui/ios_native/coins.py:630 msgid "Address Details" msgstr "" @@ -555,11 +555,11 @@ msgid "Address is frozen" msgstr "" #: gui/qt/main_window.py:3014 plugins/hw_wallet/plugin.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:250 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:250 msgid "Address not in wallet." msgstr "地址不在錢包裡。" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:55 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:55 msgid "Address to convert" msgstr "" @@ -591,11 +591,11 @@ msgstr "" msgid "After disabling passphrases, you can only pair this ViLight wallet if it had an empty passphrase. If its passphrase was not empty, you will need to create a new wallet with the install wizard. You can use this wallet again at any time by re-enabling passphrases and entering its passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "All" msgstr "所有" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:491 +#: ios/Vilight/vilight_gui/ios_native/history.py:491 msgid "All Transactions" msgstr "" @@ -603,11 +603,11 @@ msgstr "" msgid "All of your traffic to the blockchain servers will be sent unencrypted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:140 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:140 msgid "All set and good to go." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "Already Expired" msgstr "" @@ -619,11 +619,11 @@ msgstr "" #: gui/qt/history_list.py:68 gui/qt/history_list.py:71 #: gui/qt/request_list.py:42 gui/qt/utxo_list.py:56 gui/text.py:103 #: gui/text.py:176 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:643 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:273 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:596 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:542 +#: ios/Vilight/vilight_gui/ios_native/receive.py:643 +#: ios/Vilight/vilight_gui/ios_native/send.py:273 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:526 +#: ios/Vilight/vilight_gui/ios_native/coins.py:596 +#: ios/Vilight/vilight_gui/ios_native/history.py:542 msgid "Amount" msgstr "金額" @@ -632,17 +632,17 @@ msgid "Amount for OP_RETURN output must be zero." msgstr "" #: gui/qt/transaction_dialog.py:381 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:529 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:529 msgid "Amount received:" msgstr "接收的金額:" #: gui/qt/transaction_dialog.py:383 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:534 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:534 msgid "Amount sent:" msgstr "發送的金額:" #: gui/qt/main_window.py:2068 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:851 +#: ios/Vilight/vilight_gui/ios_native/send.py:851 msgid "Amount to be sent" msgstr "要發送的金額" @@ -671,7 +671,7 @@ msgstr "" msgid "An uninitialized Digital Bitbox is detected." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1178 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1178 msgid "An unknown error occurred. Cannot proceed." msgstr "" @@ -683,7 +683,7 @@ msgstr "未命名的{}" msgid "An unspecified exception was raised. Cannot open plugin." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Any" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "App-Global Options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Appearance" msgstr "外觀" @@ -718,7 +718,7 @@ msgstr "" msgid "Are you sure you want to uninstall the selected plugin?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:862 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:862 msgid "Are you sure you wish to delete this contact?" msgstr "" @@ -738,7 +738,7 @@ msgstr "" msgid "Audio Modem Settings" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:1641 +#: ios/Vilight/vilight_gui/ios_native/utils.py:1641 msgid "Authenticate, please" msgstr "" @@ -796,19 +796,19 @@ msgstr "" #: gui/qt/installwizard.py:80 gui/qt/installwizard.py:114 #: gui/qt/installwizard.py:115 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:102 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:81 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:82 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:600 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:69 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:36 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:332 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:493 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:102 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:609 +#: ios/Vilight/vilight_gui/ios_native/receive.py:77 +#: ios/Vilight/vilight_gui/ios_native/send.py:81 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:82 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:600 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:69 +#: ios/Vilight/vilight_gui/ios_native/coins.py:36 +#: ios/Vilight/vilight_gui/ios_native/coins.py:257 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:63 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:332 +#: ios/Vilight/vilight_gui/ios_native/history.py:493 msgid "Back" msgstr "返回" @@ -816,9 +816,9 @@ msgstr "返回" #: gui/qt/history_list.py:71 gui/qt/address_list.py:101 #: gui/qt/address_list.py:104 gui/qt/address_list.py:330 gui/text.py:103 #: gui/text.py:136 gui/stdio.py:104 gui/stdio.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:447 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:654 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:543 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:447 +#: ios/Vilight/vilight_gui/ios_native/gui.py:654 +#: ios/Vilight/vilight_gui/ios_native/history.py:543 msgid "Balance" msgstr "存額" @@ -853,7 +853,7 @@ msgid "Bans usually occur when other shufflers detected invalid inputs coming fr msgstr "" #: gui/qt/main_window.py:3977 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:333 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:333 msgid "Base unit" msgstr "基本單位" @@ -865,7 +865,7 @@ msgstr "您錢包的基礎單位。" msgid "Before reporting a bug, upgrade to the most recent version of ViLight (latest release or git HEAD), and include the version number in your report." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2022 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2022 msgid "Biometrics Unavailable" msgstr "" @@ -898,12 +898,12 @@ msgid "Both Receiving & Change (x2)" msgstr "" #: gui/qt/transaction_dialog.py:140 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:444 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:444 msgid "Broadcast" msgstr "廣播" #: gui/qt/main_window.py:2212 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1982 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1982 msgid "Broadcasting transaction..." msgstr "正在廣播交易動作..." @@ -919,7 +919,7 @@ msgstr "" msgid "CSV" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:765 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:765 msgid "Calculating Tx Details..." msgstr "" @@ -931,41 +931,41 @@ msgstr "" #: gui/qt/installwizard.py:115 gui/qt/installwizard.py:522 #: gui/qt/update_checker.py:103 gui/qt/update_checker.py:232 #: plugins/keepkey/qt.py:84 plugins/trezor/qt.py:66 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:866 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:885 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:310 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:320 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:504 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:631 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:147 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:151 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:352 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:296 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:347 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:778 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:793 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:539 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:482 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:629 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:927 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:853 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:866 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:885 +#: ios/Vilight/vilight_gui/ios_native/receive.py:310 +#: ios/Vilight/vilight_gui/ios_native/receive.py:320 +#: ios/Vilight/vilight_gui/ios_native/receive.py:497 +#: ios/Vilight/vilight_gui/ios_native/receive.py:504 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:631 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:147 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:352 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:84 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:296 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:347 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:778 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:793 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:539 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/coins.py:192 +#: ios/Vilight/vilight_gui/ios_native/coins.py:482 +#: ios/Vilight/vilight_gui/ios_native/coins.py:629 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:876 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:927 +#: ios/Vilight/vilight_gui/ios_native/gui.py:853 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "Cancel" msgstr "取消" @@ -990,7 +990,7 @@ msgstr "" msgid "Cancelled by user" msgstr "已被使用者取消" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:592 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:592 msgid "Cannot Delete Active Wallet" msgstr "" @@ -998,12 +998,12 @@ msgstr "" msgid "Cannot add this cosigner:" msgstr "無法新增此共同簽署者。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2206 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2206 msgid "Cannot display the requested transaction as you don't have a wallet open.\n\n" "Open a wallet and try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2220 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2220 msgid "Cannot display the requested transaction since you already have a modal dialog open.\n\n" "Close the current dialog and try again." msgstr "" @@ -1016,16 +1016,16 @@ msgstr "無法找到python程式庫" msgid "Cannot read file" msgstr "無法讀取檔案" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:152 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:152 msgid "Cannot send/receive new transactions." msgstr "" #: gui/qt/main_window.py:3009 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:242 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:242 msgid "Cannot sign messages with this type of address." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1205 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1205 msgid "Cannot specify private keys and addresses in the same wallet. Addresses will result in a watching-only wallet, and private keys in a spending wallet. Remove incompatible items (by swiping them left)." msgstr "" @@ -1102,7 +1102,7 @@ msgstr "" msgid "Cash Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:61 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:61 msgid "Cash address" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "CashAddr" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:311 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:311 msgid "CashAddr address format" msgstr "" @@ -1194,25 +1194,25 @@ msgid "Chain fork(s) detected" msgstr "" #: gui/qt/network_dialog.py:534 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:263 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:692 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:263 +#: ios/Vilight/vilight_gui/ios_native/gui.py:692 #, python-format msgid "Chain split detected at block %d" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:192 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:459 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:465 +#: ios/Vilight/vilight_gui/ios_native/receive.py:202 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:192 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:204 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:459 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:465 msgid "Change" msgstr "找零" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:477 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:205 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:205 msgid "Change Address" msgstr "" @@ -1228,8 +1228,8 @@ msgstr "更換PIN碼" msgid "Change Password" msgstr "更換密碼" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:639 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:237 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:639 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:237 msgid "Change or Set Password" msgstr "" @@ -1265,7 +1265,7 @@ msgstr "子代親支付" msgid "Child pays for parent" msgstr "子代親支付" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:314 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:314 msgid "Choose Address" msgstr "" @@ -1286,7 +1286,7 @@ msgstr "" msgid "Choose a password to encrypt your wallet keys." msgstr "請想定一道加密您錢包金鑰的密碼。" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Choose address or enter a public key" msgstr "" @@ -1325,8 +1325,8 @@ msgstr "選擇開啟網頁瀏覽器時所要使用的線上區塊探索器" msgid "Choose..." msgstr "選擇..." -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:249 +#: ios/Vilight/vilight_gui/ios_native/send.py:234 +#: ios/Vilight/vilight_gui/ios_native/coins.py:249 msgid "Clear" msgstr "清除" @@ -1377,7 +1377,7 @@ msgstr "" msgid "Coin & Address are frozen" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:32 +#: ios/Vilight/vilight_gui/ios_native/coins.py:32 msgid "Coin Info" msgstr "" @@ -1410,7 +1410,7 @@ msgid "Coinbase not supported" msgstr "" #: plugins/shuffle/qt.py:1394 plugins/shuffle/qt.py:1399 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:243 +#: ios/Vilight/vilight_gui/ios_native/coins.py:243 msgid "Coins" msgstr "" @@ -1426,7 +1426,7 @@ msgstr "" msgid "Color theme" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:800 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:800 msgid "Coming Soon" msgstr "" @@ -1442,7 +1442,7 @@ msgstr "主控臺(&S)" msgid "Con&tacts" msgstr "聯絡人(&T)" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:861 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:861 msgid "Confirm Delete" msgstr "" @@ -1466,7 +1466,7 @@ msgstr "確認種苗" msgid "Confirm Seed Extension" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:883 +#: ios/Vilight/vilight_gui/ios_native/send.py:883 msgid "Confirm Send" msgstr "" @@ -1478,7 +1478,7 @@ msgstr "" msgid "Confirm Transaction on your {}..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Confirm Wallet Password" msgstr "" @@ -1551,13 +1551,13 @@ msgid "Connected" msgstr "" #: gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 msgid "Connected node" msgstr "已連接節點" #: gui/qt/network_dialog.py:526 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 #, python-format msgid "Connected to %d nodes." msgstr "" @@ -1578,34 +1578,34 @@ msgstr "" msgid "Connections" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:204 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:204 msgid "Contact" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:605 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:605 msgid "Contact Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "Contact added" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:436 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:653 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:392 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:436 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:653 msgid "Contact saved" msgstr "" #: gui/qt/main_window.py:610 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:69 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:69 msgid "Contacts" msgstr "聯絡人" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Control your own private keys" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:227 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:227 msgid "Convert between Legacy and Cashaddr formats" msgstr "" @@ -1623,10 +1623,10 @@ msgid "Copy {cash_account_name}" msgstr "" #: gui/qt/transaction_dialog.py:742 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:867 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:627 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:877 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:867 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:291 +#: ios/Vilight/vilight_gui/ios_native/coins.py:627 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:877 msgid "Copy Address" msgstr "" @@ -1651,7 +1651,7 @@ msgstr "" msgid "Copy Public Key" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Copy Public key" msgstr "" @@ -1659,7 +1659,7 @@ msgstr "" msgid "Copy QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:304 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:304 msgid "Copy Script" msgstr "" @@ -1679,7 +1679,7 @@ msgstr "" msgid "Copy URI" msgstr "複製 URI" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "Copy UTXO" msgstr "" @@ -1687,7 +1687,7 @@ msgstr "" msgid "Copy and Close" msgstr "複製並關閉" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:293 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:293 msgid "Copy input hash" msgstr "" @@ -1696,8 +1696,8 @@ msgid "Copy link" msgstr "" #: gui/qt/util.py:811 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:148 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:779 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:779 msgid "Copy to clipboard" msgstr "複製到剪貼簿" @@ -1764,7 +1764,7 @@ msgstr "" msgid "Could not sign message." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:66 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:66 msgid "Crash Reporter" msgstr "" @@ -1772,8 +1772,8 @@ msgstr "" msgid "Create" msgstr "創建" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:814 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1543 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:814 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1543 msgid "Create New Standard Wallet" msgstr "" @@ -1781,7 +1781,7 @@ msgstr "" msgid "Create a new seed" msgstr "創建新種子" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:846 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:846 msgid "Create a wallet using a Master Key" msgstr "" @@ -1817,7 +1817,7 @@ msgstr "" msgid "Custom rate: " msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1638 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1638 msgid "Daemon was not running." msgstr "" @@ -1839,8 +1839,8 @@ msgstr "暗/亮" #: gui/qt/history_list.py:68 gui/qt/request_list.py:42 gui/text.py:103 #: gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:508 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:519 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:508 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:519 msgid "Date" msgstr "日期" @@ -1871,15 +1871,15 @@ msgstr "" #: gui/qt/invoice_list.py:95 gui/qt/main_window.py:587 #: gui/qt/main_window.py:2667 gui/qt/request_list.py:157 #: gui/qt/contact_list.py:218 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:863 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:871 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:886 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:616 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:863 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:871 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:886 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:616 msgid "Delete" msgstr "刪除" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:614 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:632 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:614 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:632 msgid "Delete Wallet" msgstr "" @@ -1891,12 +1891,12 @@ msgstr "刪除收據?" msgid "Delete wallet file?" msgstr "刪除錢包檔?" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:682 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:687 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:682 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:687 msgid "Derivation" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "Derivation Invalid" msgstr "" @@ -1904,7 +1904,7 @@ msgstr "" msgid "Derivation for {} wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1026 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1026 msgid "Deriving addresses..." msgstr "" @@ -1912,22 +1912,22 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/history_list.py:68 #: gui/qt/request_list.py:42 gui/qt/transaction_dialog.py:358 gui/text.py:103 #: gui/text.py:175 gui/stdio.py:104 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:198 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:478 +#: ios/Vilight/vilight_gui/ios_native/receive.py:198 +#: ios/Vilight/vilight_gui/ios_native/send.py:189 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:478 msgid "Description" msgstr "描述說明" #: gui/qt/main_window.py:1482 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:204 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:215 +#: ios/Vilight/vilight_gui/ios_native/receive.py:204 +#: ios/Vilight/vilight_gui/ios_native/send.py:215 msgid "Description of the transaction (not mandatory)." msgstr "交易事項的描述說明(非強制)。" #: gui/qt/invoice_list.py:92 gui/qt/history_list.py:240 #: gui/qt/address_list.py:306 gui/qt/address_list.py:366 #: gui/qt/utxo_list.py:237 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Details" msgstr "細節" @@ -1977,7 +1977,7 @@ msgstr "取消密碼" msgid "Disabled" msgstr "已禁用" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1417 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1417 msgid "Disk Space Low" msgstr "" @@ -1994,7 +1994,7 @@ msgid "Do not pair" msgstr "無法配對" #: gui/qt/seed_dialog.py:46 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:91 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:91 msgid "Do not store it electronically." msgstr "請不要以電子方式儲存。" @@ -2026,24 +2026,24 @@ msgstr "您想要發送這個報告嗎?" msgid "Do you wish to continue?" msgstr "您是否打算繼續?" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:409 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:409 msgid "Do you wish to follow the\n" "{}@{}\n" "branch?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:815 +#: ios/Vilight/vilight_gui/ios_native/gui.py:815 msgid "Do you wish to hide the download progress banner?\n" "(You can re-enabled it in Settings later)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:427 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:427 msgid "Do you wish to use\n" "{}:{}\n" "as the blockchain server?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:403 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:403 msgid "Do you wish to use\n" "{}:{}\n" "as the wallet server?" @@ -2061,15 +2061,15 @@ msgstr "" msgid "Download input data" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:144 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:144 msgid "Downloading Headers" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:406 +#: ios/Vilight/vilight_gui/ios_native/gui.py:406 msgid "Downloading blockchain headers..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:730 +#: ios/Vilight/vilight_gui/ios_native/gui.py:730 msgid "Downloading headers {}% ..." msgstr "" @@ -2085,17 +2085,17 @@ msgstr "" msgid "ENABLED" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:30 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:30 msgid "Easily back up your wallet with a mnemonic seed phrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:868 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:868 msgid "Edit Contact" msgstr "" #: gui/qt/main_window.py:3911 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:275 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:275 msgid "Edit fees manually" msgstr "手動編輯手續費" @@ -2109,7 +2109,7 @@ msgid "ViLight cannot pair with your {}.\n\n" "Before you request bitcoins to be sent to addresses in this wallet, ensure you can pair with your device, or that you have its seed (and passphrase, if any). Otherwise all bitcoins you receive will be unspendable." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1418 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1418 msgid "ViLight cannot proceed because this device is very low on disk space. Please free up some disk space and try again." msgstr "" @@ -2118,7 +2118,7 @@ msgid "ViLight communicates with remote servers to get information about your tr msgstr "" #: gui/qt/network_dialog.py:421 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:493 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:493 msgid "ViLight connects to several nodes in order to download block headers and find out the longest blockchain." msgstr "" @@ -2126,7 +2126,7 @@ msgstr "" msgid "ViLight currently only supports Vitae ID types 1 & 2" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "ViLight is an SPV wallet for Vitae" msgstr "" @@ -2150,7 +2150,7 @@ msgid "ViLight on Linux requires PyQt5 5.12+.\n\n" msgstr "" #: gui/qt/network_dialog.py:432 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:497 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:497 msgid "ViLight sends your wallet addresses to a single server, in order to receive your transaction history." msgstr "" @@ -2191,7 +2191,7 @@ msgid "ViLight was unable to open your transaction file" msgstr "" #: gui/qt/main_window.py:3164 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2229 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2229 msgid "ViLight was unable to parse your transaction" msgstr "" @@ -2290,12 +2290,12 @@ msgstr "加密" msgid "Encrypt wallet file" msgstr "加密錢包檔案" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Encrypt/Decrypt Message" msgstr "" #: gui/qt/main_window.py:3100 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:918 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:918 msgid "Encrypt/decrypt Message" msgstr "加密/解密訊息" @@ -2319,7 +2319,7 @@ msgstr "" msgid "Encryption and decryption are not implemented by {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "Enjoy high security" msgstr "" @@ -2336,10 +2336,10 @@ msgid "Enter Passphrase" msgstr "輸入密語" #: gui/qt/password_dialog.py:61 gui/qt/password_dialog.py:202 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:258 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:267 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:305 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:314 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:258 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:267 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:305 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:314 msgid "Enter Password" msgstr "輸入密碼" @@ -2367,7 +2367,7 @@ msgstr "" msgid "Enter a list of outputs in the 'Pay to' field." msgstr "請在「支付給」欄位中輸入輸出清單。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:854 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:854 msgid "Enter a list of private keys to create a regular spending wallet. Alternatively, you can create a 'watching-only' wallet by entering a list of Vitae addresses." msgstr "" @@ -2399,11 +2399,11 @@ msgstr "" msgid "Enter cosigner seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:578 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:578 msgid "Enter new wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:145 msgid "Enter or pick address" msgstr "" @@ -2435,7 +2435,7 @@ msgid "Enter the recovery words by pressing the buttons according to what the de "Press BACKSPACE to go back a choice or word.\n" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Enter the same password again" msgstr "" @@ -2466,17 +2466,17 @@ msgid "Enter your password or choose another file." msgstr "輸入您的密碼或選擇其他檔案。" #: gui/qt/main_window.py:2092 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:259 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:306 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:259 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:306 msgid "Enter your password to proceed" msgstr "輸入您的密碼以繼續" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:582 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:582 msgid "Enter your seed phrase" msgstr "" #: lib/base_wizard.py:274 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:683 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:683 msgid "Enter your wallet derivation here." msgstr "" @@ -2495,11 +2495,11 @@ msgstr "" #: gui/qt/util.py:226 gui/qt/__init__.py:523 gui/qt/__init__.py:525 #: gui/qt/installwizard.py:237 gui/qt/installwizard.py:241 gui/text.py:362 #: gui/stdio.py:209 plugins/shuffle/qt.py:1046 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:393 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:393 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1056 msgid "Error" msgstr "錯誤" @@ -2531,7 +2531,7 @@ msgstr "" msgid "Exit ViLight" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:512 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:512 msgid "Expected conf." msgstr "" @@ -2568,7 +2568,7 @@ msgstr "匯出歷史紀錄" msgid "Export file" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1733 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1733 msgid "Exporting Wallet..." msgstr "" @@ -2581,7 +2581,7 @@ msgid "Extend this seed with custom words" msgstr "以自訂字詞擴展此種苗" #: gui/qt/cashacctqt.py:854 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:201 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:201 msgid "External Address" msgstr "" @@ -2607,7 +2607,7 @@ msgid "Failed to send transaction to cosigning pool." msgstr "" #: gui/qt/main_window.py:2825 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2006 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2006 msgid "Failed to update password" msgstr "無法更新密碼" @@ -2616,12 +2616,12 @@ msgid "Failed to verify SSL certificate" msgstr "" #: gui/qt/transaction_dialog.py:385 gui/text.py:177 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:195 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:556 +#: ios/Vilight/vilight_gui/ios_native/send.py:195 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:556 msgid "Fee" msgstr "手續費" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:199 +#: ios/Vilight/vilight_gui/ios_native/send.py:199 msgid "Fee manual edit" msgstr "" @@ -2639,27 +2639,27 @@ msgid "Feel free to add your email address if you are willing to provide further msgstr "" #: gui/qt/main_window.py:4295 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fees" msgstr "手續費" #: gui/qt/main_window.py:4300 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Fiat" msgstr "法幣" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:200 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:213 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:200 +#: ios/Vilight/vilight_gui/ios_native/receive.py:213 +#: ios/Vilight/vilight_gui/ios_native/send.py:301 msgid "Fiat amount" msgstr "" #: gui/qt/main_window.py:4288 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:358 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:358 msgid "Fiat currency" msgstr "法定貨幣" -#: gui/qt/util.py:509 ios/ElectronCash/electroncash_gui/ios_native/utils.py:311 +#: gui/qt/util.py:509 ios/Vilight/vilight_gui/ios_native/utils.py:311 msgid "File" msgstr "檔案" @@ -2680,11 +2680,11 @@ msgid "Fixed rate: " msgstr "" #: gui/qt/network_dialog.py:113 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:408 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:408 msgid "Follow this branch" msgstr "依循此分支" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2270 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2270 msgid "For convenience, would you like to use Touch ID or Face ID to open this wallet?\n\n" "Your wallet password will still be used as a backup mechanism for when Touch/Face ID fails or is unavailable.\n\n" "Your wallet will continue to be protected and secure." @@ -2719,8 +2719,8 @@ msgid "Format: address, amount" msgstr "格式:位址, 金額" #: gui/qt/address_list.py:346 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Freeze" msgstr "" @@ -2762,11 +2762,11 @@ msgid "From the &blockchain" msgstr "" #: plugins/shuffle/qt.py:84 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:605 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:196 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:460 +#: ios/Vilight/vilight_gui/ios_native/coins.py:144 +#: ios/Vilight/vilight_gui/ios_native/coins.py:605 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:196 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:208 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:460 msgid "Frozen" msgstr "" @@ -2778,7 +2778,7 @@ msgstr "" msgid "Full 2FA enabled. This is not supported yet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Funded" msgstr "" @@ -2806,24 +2806,24 @@ msgstr "" msgid "Generate a new random wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:323 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:323 msgid "Generating seed..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1611 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1611 msgid "Generating your addresses..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1280 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1280 msgid "Generating your wallet..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:32 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1556 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:32 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1556 msgid "Get Started" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1538 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1538 msgid "Get started now" msgstr "" @@ -2860,10 +2860,10 @@ msgid "Hardware Wallet Support..." msgstr "" #: gui/qt/utxo_list.py:56 gui/qt/network_dialog.py:98 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:326 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:598 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:275 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:326 +#: ios/Vilight/vilight_gui/ios_native/coins.py:598 msgid "Height" msgstr "高度" @@ -2875,11 +2875,11 @@ msgstr "" msgid "Here is your master public key." msgstr "這是您的主要公鑰。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:814 +#: ios/Vilight/vilight_gui/ios_native/gui.py:814 msgid "Hide Download Banner" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:304 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:304 msgid "Hide download banner" msgstr "" @@ -2906,8 +2906,8 @@ msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 #: plugins/shuffle/qt.py:1583 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:279 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:279 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Host" msgstr "主機" @@ -2960,7 +2960,7 @@ msgid "If 'Connect only to preferred servers' is enabled, ViLight will only conn msgstr "" #: gui/qt/network_dialog.py:323 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:502 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:502 msgid "If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain." msgstr "" @@ -2981,7 +2981,7 @@ msgid "If insufficient shuffled funds are available, you can wait a few minutes msgstr "" #: gui/qt/network_dialog.py:324 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:503 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:503 msgid "If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging." msgstr "" @@ -3010,7 +3010,7 @@ msgid "If unsure, most of the time it's safe to leave this option disabled. Howe msgstr "" #: lib/base_wizard.py:275 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:684 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:684 msgid "If you are not sure what this is, leave this field unchanged." msgstr "" @@ -3055,12 +3055,12 @@ msgid "If you think this wallet may have a transaction history for addresses bey msgstr "" #: lib/base_wizard.py:277 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:686 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:686 msgid "If you want the wallet to use Vitae addresses use m/44'/445'/0'" msgstr "" #: lib/base_wizard.py:276 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:685 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:685 msgid "If you want the wallet to use legacy Bitcoin addresses use m/44'/0'/0'" msgstr "" @@ -3077,12 +3077,12 @@ msgstr "" msgid "If your wallet contains funds, make sure you have saved its seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:668 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:492 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:512 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:876 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:220 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:284 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:668 +#: ios/Vilight/vilight_gui/ios_native/receive.py:492 +#: ios/Vilight/vilight_gui/ios_native/receive.py:512 +#: ios/Vilight/vilight_gui/ios_native/utils.py:876 +#: ios/Vilight/vilight_gui/ios_native/coins.py:220 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:284 msgid "Image" msgstr "" @@ -3092,14 +3092,14 @@ msgstr "" #: gui/qt/main_window.py:612 gui/qt/main_window.py:615 #: gui/qt/main_window.py:3607 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:852 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:972 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:852 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:972 msgid "Import" msgstr "匯入" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:816 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1545 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:816 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1545 msgid "Import Addresses or Private Keys" msgstr "" @@ -3107,7 +3107,7 @@ msgstr "" msgid "Import Vitae Addresses" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:853 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:853 msgid "Import Vitae Addresses or Private Keys" msgstr "" @@ -3135,19 +3135,19 @@ msgstr "匯入私鑰" msgid "Importing encrypted files is not supported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1217 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1217 msgid "Importing these addresses will add them to your watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1215 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1215 msgid "Importing these addresses will create a watching-only wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1212 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1212 msgid "Importing these keys will add addresses and keys to your spending wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1210 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1210 msgid "Importing these keys will create a fully capable spending wallet." msgstr "" @@ -3201,8 +3201,8 @@ msgstr "" #: gui/qt/main_window.py:466 gui/qt/util.py:234 plugins/keepkey/qt.py:574 #: plugins/trezor/qt.py:663 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:506 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1079 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:506 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1079 msgid "Information" msgstr "資訊" @@ -3225,8 +3225,8 @@ msgid_plural "Inputs ({num_inputs})" msgstr[0] "" #: gui/qt/main_window.py:4613 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:212 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:275 +#: ios/Vilight/vilight_gui/ios_native/receive.py:212 +#: ios/Vilight/vilight_gui/ios_native/send.py:275 msgid "Input amount" msgstr "輸入金額" @@ -3238,7 +3238,7 @@ msgstr "" msgid "Input raw transaction" msgstr "輸入原生交易" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:99 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:99 msgid "Inputs" msgstr "輸入" @@ -3260,8 +3260,8 @@ msgid "Installed &Plugins" msgstr "" #: gui/qt/main_window.py:2045 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:828 +#: ios/Vilight/vilight_gui/ios_native/send.py:479 +#: ios/Vilight/vilight_gui/ios_native/send.py:828 msgid "Insufficient funds" msgstr "餘額不足" @@ -3273,25 +3273,25 @@ msgstr "" msgid "Internal error converting image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1089 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1089 msgid "Invalid" msgstr "" #: gui/qt/main_window.py:2574 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:472 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:488 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1038 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:472 +#: ios/Vilight/vilight_gui/ios_native/send.py:488 +#: ios/Vilight/vilight_gui/ios_native/send.py:1038 msgid "Invalid Address" msgstr "無效位址" #: gui/qt/main_window.py:1965 gui/text.py:331 gui/stdio.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1056 +#: ios/Vilight/vilight_gui/ios_native/send.py:1056 msgid "Invalid Amount" msgstr "無效的金額" #: gui/qt/main_window.py:3006 gui/qt/main_window.py:3026 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:234 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:278 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:234 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:278 msgid "Invalid Vitae address." msgstr "" @@ -3324,9 +3324,9 @@ msgstr "" msgid "Invalid PIN - please unplug the {} and plug it again before retrying" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:528 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:119 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:105 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:528 +#: ios/Vilight/vilight_gui/ios_native/send.py:119 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:105 msgid "Invalid QR Code" msgstr "" @@ -3335,7 +3335,7 @@ msgid "Invalid amount" msgstr "" #: gui/qt/main_window.py:2293 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1196 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1196 msgid "Invalid vitae URI:" msgstr "" @@ -3347,7 +3347,7 @@ msgstr "" msgid "Invalid lines found:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:567 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:567 msgid "Invalid name, please try again." msgstr "" @@ -3367,7 +3367,7 @@ msgstr "發票" msgid "Is default for address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:675 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:675 msgid "It appears the derivation you specified is invalid. Please try again" msgstr "" @@ -3480,7 +3480,7 @@ msgstr "" msgid "Legacy Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:62 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:62 msgid "Legacy address" msgstr "" @@ -3520,7 +3520,7 @@ msgstr "載入交易" msgid "Loading backup..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:562 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:562 msgid "Locktime" msgstr "" @@ -3573,12 +3573,12 @@ msgstr "" msgid "Make this Vitae ID the default for this address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:738 +#: ios/Vilight/vilight_gui/ios_native/send.py:738 msgid "Manual fee" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:845 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:845 msgid "Master Key" msgstr "" @@ -3594,16 +3594,16 @@ msgstr "主要公鑰" msgid "Matrix" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:192 +#: ios/Vilight/vilight_gui/ios_native/send.py:192 msgid "Max" msgstr "最大" #: gui/qt/main_window.py:4642 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:482 +#: ios/Vilight/vilight_gui/ios_native/send.py:482 msgid "Max fee exceeded" msgstr "已達最高額手續費" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:260 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:260 msgid "Max static fee" msgstr "" @@ -3640,7 +3640,7 @@ msgid "Minimum coin:" msgstr "" #: gui/qt/main_window.py:2069 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:852 +#: ios/Vilight/vilight_gui/ios_native/send.py:852 msgid "Mining fee" msgstr "挖礦手續費" @@ -3652,7 +3652,7 @@ msgstr "" msgid "Mobile pairing options" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:238 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:238 msgid "Modify wallet password & encryption settings" msgstr "" @@ -3676,15 +3676,15 @@ msgstr "多重簽章錢包" msgid "Multiple results were found, please select an option from the items below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:197 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:197 msgid "My Change Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:199 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:199 msgid "My Receiving Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "My Wallet" msgstr "" @@ -3694,12 +3694,12 @@ msgstr "" #: gui/qt/external_plugins_window.py:75 gui/qt/external_plugins_window.py:475 #: gui/qt/main_window.py:2864 gui/qt/contact_list.py:58 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:572 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:360 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:572 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:360 msgid "Name" msgstr "名稱" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:475 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:475 msgid "Name is empty" msgstr "" @@ -3712,11 +3712,11 @@ msgid "Needs update" msgstr "" #: gui/qt/main_window.py:2773 gui/qt/network_dialog.py:48 gui/text.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2068 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2068 msgid "Network" msgstr "網路" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:232 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:232 msgid "Network Settings" msgstr "" @@ -3729,7 +3729,7 @@ msgstr "" #: gui/qt/invoice_list.py:51 gui/qt/exception_window.py:106 #: gui/qt/request_list.py:59 gui/qt/util.py:49 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 msgid "Never" msgstr "不要" @@ -3739,7 +3739,7 @@ msgid "Never ask for this wallet" msgstr "" #: gui/qt/seed_dialog.py:44 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:89 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:89 msgid "Never disclose your seed." msgstr "永不揭露您的種苗。" @@ -3748,7 +3748,7 @@ msgid "Never show this again" msgstr "" #: gui/qt/seed_dialog.py:45 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:90 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:90 msgid "Never type it on a website." msgstr "永不在網站上輸入這些內容。" @@ -3757,8 +3757,8 @@ msgid "New Vitae ID Contact" msgstr "" #: gui/qt/main_window.py:2856 gui/qt/main_window.py:2858 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:566 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:337 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:566 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:337 msgid "New Contact" msgstr "新聯絡人" @@ -3766,19 +3766,19 @@ msgstr "新聯絡人" msgid "New Password:" msgstr "新密碼:" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:809 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:809 msgid "New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1342 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1342 msgid "New Wallet Created" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:146 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:146 msgid "New contact" msgstr "新聯絡人" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:778 +#: ios/Vilight/vilight_gui/ios_native/gui.py:778 msgid "New transaction received: {}" msgstr "" @@ -3787,21 +3787,21 @@ msgid "New transaction: {}" msgstr "" #: gui/qt/bip38_importer.py:185 gui/qt/installwizard.py:116 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:166 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:291 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:832 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:166 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:291 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:391 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:832 msgid "Next" msgstr "下一個" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:818 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:820 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/gui.py:818 +#: ios/Vilight/vilight_gui/ios_native/gui.py:820 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "No" msgstr "" @@ -3809,7 +3809,7 @@ msgstr "" msgid "No Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:429 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:429 msgid "No Match" msgstr "" @@ -3825,15 +3825,15 @@ msgstr "" msgid "No QR code was found in the selected image file." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1382 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1382 msgid "No Wallet" msgstr "無錢包" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1391 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1391 msgid "No Wallet Is Open" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:431 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:431 msgid "No addresses match the specified criteria" msgstr "" @@ -3841,7 +3841,7 @@ msgstr "" msgid "No addresses with transaction histories were found in the specified scan range." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:374 +#: ios/Vilight/vilight_gui/ios_native/coins.py:374 msgid "No coins" msgstr "" @@ -3870,7 +3870,7 @@ msgid "No matching x_key for sign_transaction" msgstr "" #: gui/qt/main_window.py:1269 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:394 +#: ios/Vilight/vilight_gui/ios_native/receive.py:394 msgid "No message or amount" msgstr "無訊息或金額" @@ -3879,16 +3879,16 @@ msgid "No more addresses in your wallet." msgstr "您的錢包中沒有其他位址。" #: gui/qt/main_window.py:1960 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1051 +#: ios/Vilight/vilight_gui/ios_native/send.py:1051 msgid "No outputs" msgstr "無輸出" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:311 +#: ios/Vilight/vilight_gui/ios_native/gui.py:311 msgid "No payment requests found. Feel free to create one." msgstr "" #: gui/qt/main_window.py:1265 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:389 +#: ios/Vilight/vilight_gui/ios_native/receive.py:389 msgid "No receiving address" msgstr "" @@ -3900,25 +3900,25 @@ msgstr "" msgid "No such mempool or blockchain transaction exists." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:517 +#: ios/Vilight/vilight_gui/ios_native/history.py:517 msgid "No transactions" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:519 +#: ios/Vilight/vilight_gui/ios_native/history.py:519 msgid "No transactions were found on the blockchain." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1219 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1219 msgid "No valid items remain. Cannot proceed -- go back and try again." msgstr "" #: gui/qt/main_window.py:1057 gui/qt/main_window.py:4209 #: gui/qt/network_dialog.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:110 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:405 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:233 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:110 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:362 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:391 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:405 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:233 msgid "None" msgstr "無" @@ -3926,7 +3926,7 @@ msgstr "無" msgid "Normally, when you (re)generate a wallet from its seed, addresses are derived and added to the wallet until a block of addresses is found without a history. This is referred to as the gap." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "Not Deleted" msgstr "" @@ -3948,8 +3948,8 @@ msgstr "" #: gui/qt/main_window.py:915 gui/qt/main_window.py:2180 #: gui/qt/network_dialog.py:526 gui/text.py:142 gui/stdio.py:122 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:257 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:715 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:257 +#: ios/Vilight/vilight_gui/ios_native/gui.py:715 msgid "Not connected" msgstr "未連接" @@ -4006,18 +4006,18 @@ msgid "Number of zeros displayed after the decimal point. For example, if this i msgstr "小數點後方的顯示位數。舉例而言,若設定為 2,「1.」會顯示為「1.00」。" #: gui/qt/bip38_importer.py:185 gui/qt/util.py:181 plugins/audio_modem/qt.py:65 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:594 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:288 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:351 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:466 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:480 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:499 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:520 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:537 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:540 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1080 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:594 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:87 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:288 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:351 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:466 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:480 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:499 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:520 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:537 +#: ios/Vilight/vilight_gui/ios_native/utils.py:362 +#: ios/Vilight/vilight_gui/ios_native/utils.py:540 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1080 msgid "OK" msgstr "確定" @@ -4049,11 +4049,11 @@ msgstr "" #: gui/qt/main_window.py:852 gui/qt/main_window.py:865 gui/qt/__init__.py:641 #: gui/text.py:130 plugins/shuffle/qt.py:112 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:153 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:230 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:619 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:625 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:719 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:153 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:230 +#: ios/Vilight/vilight_gui/ios_native/gui.py:619 +#: ios/Vilight/vilight_gui/ios_native/gui.py:625 +#: ios/Vilight/vilight_gui/ios_native/gui.py:719 msgid "Offline" msgstr "離線" @@ -4088,13 +4088,13 @@ msgstr "" msgid "One output per line." msgstr "每列一則輸出。" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:141 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:650 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:141 +#: ios/Vilight/vilight_gui/ios_native/gui.py:650 msgid "Online" msgstr "" #: gui/qt/main_window.py:4003 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:343 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:343 msgid "Online Block Explorer" msgstr "線上區塊探索器" @@ -4122,11 +4122,11 @@ msgstr "" msgid "Only wipe a device if you have the recovery seed written down and the device wallet(s) are empty, otherwise the bitcoins will be lost forever." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1344 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1344 msgid "Open New Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:628 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:628 msgid "Open Wallet" msgstr "" @@ -4146,12 +4146,12 @@ msgstr "" msgid "OpenAlias record, used to receive coins and to sign payment requests." msgstr "OpenAlias 記錄,用於接收錢幣並簽署支付請求。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1683 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1890 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1683 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1890 msgid "Opening encrypted wallet: '{}'" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1689 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1689 msgid "Opening {}..." msgstr "" @@ -4164,12 +4164,12 @@ msgid "Optional Features" msgstr "" #: gui/qt/seed_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:144 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:232 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:790 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:189 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:479 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:924 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:232 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:790 +#: ios/Vilight/vilight_gui/ios_native/coins.py:189 +#: ios/Vilight/vilight_gui/ios_native/coins.py:479 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:924 msgid "Options" msgstr "選項" @@ -4178,8 +4178,8 @@ msgid "Outdated {} firmware for device labelled {}. Please download the updated msgstr "" #: gui/qt/transaction_dialog.py:470 gui/qt/transaction_dialog.py:766 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:190 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:480 +#: ios/Vilight/vilight_gui/ios_native/coins.py:190 +#: ios/Vilight/vilight_gui/ios_native/coins.py:480 #, python-brace-format msgid "Output" msgid_plural "Outputs ({num_outputs})" @@ -4193,7 +4193,7 @@ msgstr "輸出金額" msgid "Output point" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:100 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:100 msgid "Outputs" msgstr "輸出" @@ -4246,21 +4246,21 @@ msgstr "" msgid "Password" msgstr "密碼" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1676 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1676 msgid "Password Incorrect" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1684 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1684 msgid "Password Required" msgstr "" #: gui/qt/password_dialog.py:150 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:193 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:193 msgid "Password Strength" msgstr "密碼強度" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password is disabled, this wallet is not protected" msgstr "密碼已停用,此錢包尚未受到保護" @@ -4275,7 +4275,7 @@ msgid "Password must have less than 64 characters." msgstr "" #: gui/qt/main_window.py:2827 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2008 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2008 msgid "Password was updated successfully" msgstr "密碼已成功供新" @@ -4283,7 +4283,7 @@ msgstr "密碼已成功供新" msgid "Password:" msgstr "密碼:" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:574 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:574 msgid "Paste an address or use QR" msgstr "" @@ -4309,9 +4309,9 @@ msgid "Pay Now" msgstr "立刻支付" #: gui/qt/cashacctqt.py:631 gui/qt/contact_list.py:215 gui/text.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:607 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:869 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:144 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:607 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:869 +#: ios/Vilight/vilight_gui/ios_native/send.py:144 msgid "Pay to" msgstr "支付給" @@ -4323,21 +4323,21 @@ msgstr "支付給多方" msgid "Payment Request" msgstr "支付請求" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1144 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1144 msgid "Payment Request Error" msgstr "" #: gui/qt/main_window.py:1922 gui/qt/main_window.py:2144 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1936 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1936 msgid "Payment request has expired" msgstr "支付請求已過期" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:425 +#: ios/Vilight/vilight_gui/ios_native/receive.py:425 msgid "Payment request saved" msgstr "" #: gui/qt/main_window.py:2199 gui/text.py:358 gui/stdio.py:207 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1971 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1971 msgid "Payment sent." msgstr "支付已送出。" @@ -4366,7 +4366,7 @@ msgid "Players" msgstr "" #: gui/qt/exception_window.py:87 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:56 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:56 msgid "Please briefly describe what led to the error (optional):" msgstr "" @@ -4398,7 +4398,7 @@ msgstr "請輸入您共同簽署者的主要公鑰 (xpub)。" msgid "Please enter the master public key of cosigner #{}:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:581 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:581 msgid "Please enter the new name for this wallet:" msgstr "" @@ -4432,19 +4432,19 @@ msgstr "" msgid "Please make sure that 'Browser support' is disabled on your {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:301 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:301 msgid "Please provide a public key or select an address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:327 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:327 msgid "Please provide a public key to use for decryption" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:272 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:272 msgid "Please provide both a signature and a message to verify" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:323 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:323 msgid "Please provide cyphertext to decrypt" msgstr "" @@ -4465,7 +4465,7 @@ msgid "Please review the transaction, save it, and/or broadcast it at your leisu msgstr "" #: gui/qt/seed_dialog.py:38 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:84 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:84 #, python-format msgid "Please save these %d words on paper (order is important). " msgstr "" @@ -4478,7 +4478,7 @@ msgstr "" msgid "Please share it with your cosigners." msgstr "請和您的共同簽署者分享。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:931 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:931 msgid "Please specify a master key to continue. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv." msgstr "" @@ -4502,8 +4502,8 @@ msgstr "" msgid "Please visit this page for instructions on how to correct the situation:" msgstr "" -#: gui/qt/util.py:341 ios/ElectronCash/electroncash_gui/ios_native/utils.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:400 +#: gui/qt/util.py:341 ios/Vilight/vilight_gui/ios_native/utils.py:398 +#: ios/Vilight/vilight_gui/ios_native/utils.py:400 msgid "Please wait" msgstr "請稍候" @@ -4521,7 +4521,7 @@ msgstr "請稍候..." msgid "Please wait... {num}/{total}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:26 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:26 msgid "Please write your seed phrase down, as it's the only way to recover your funds if you forget your password or your device is stolen." msgstr "" @@ -4554,7 +4554,7 @@ msgid "Pool size" msgstr "" #: gui/qt/network_dialog.py:172 gui/qt/network_dialog.py:704 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:329 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:329 msgid "Port" msgstr "連接埠" @@ -4562,7 +4562,7 @@ msgstr "連接埠" msgid "Posts a PERMANENT note to the VITAE blockchain as part of this transaction." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1704 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1704 msgid "Potentially Unsafe Operation" msgstr "" @@ -4591,7 +4591,7 @@ msgstr "請按「下一步」開啟此錢包。" msgid "Press Enter" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:238 +#: ios/Vilight/vilight_gui/ios_native/send.py:238 msgid "Preview" msgstr "預覽" @@ -4599,14 +4599,14 @@ msgstr "預覽" msgid "Privacy Warning" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:25 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:25 msgid "Private Key" msgstr "" #: gui/qt/main_window.py:2976 gui/qt/main_window.py:2981 #: gui/qt/address_list.py:314 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:70 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:913 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:70 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:913 msgid "Private key" msgstr "私鑰" @@ -4623,7 +4623,7 @@ msgid "Proceed to Send Tab" msgstr "" #: gui/qt/main_window.py:2097 gui/qt/main_window.py:2167 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:882 +#: ios/Vilight/vilight_gui/ios_native/send.py:882 msgid "Proceed?" msgstr "繼續?" @@ -4668,7 +4668,7 @@ msgid "Proxy user" msgstr "代理使用者" #: gui/qt/main_window.py:3117 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:896 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:896 msgid "Public key" msgstr "公鑰" @@ -4680,10 +4680,10 @@ msgstr "公鑰" msgid "PyQt5 Upgrade Needed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "QR Not Available" msgstr "" @@ -4692,9 +4692,9 @@ msgid "QR Reader Error" msgstr "" #: gui/qt/main_window.py:2958 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:100 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:722 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:100 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:95 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:722 msgid "QR code" msgstr "QR 碼" @@ -4722,7 +4722,7 @@ msgstr "" msgid "QtSvg Missing" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1060 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1060 msgid "Question" msgstr "" @@ -4768,8 +4768,8 @@ msgid "Rebuild this wallet's history now?" msgstr "" #: gui/qt/main_window.py:165 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:72 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:306 +#: ios/Vilight/vilight_gui/ios_native/receive.py:72 +#: ios/Vilight/vilight_gui/ios_native/gui.py:306 msgid "Receive" msgstr "接收" @@ -4782,13 +4782,13 @@ msgid "Receive request URI copied to clipboard" msgstr "" #: gui/qt/address_list.py:172 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:608 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/coins.py:608 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 msgid "Receiving" msgstr "" #: gui/qt/cashacctqt.py:453 gui/qt/transaction_dialog.py:476 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:203 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:203 msgid "Receiving Address" msgstr "" @@ -4796,7 +4796,7 @@ msgstr "" msgid "Receiving Addresses Only" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:197 +#: ios/Vilight/vilight_gui/ios_native/receive.py:197 msgid "Receiving address" msgstr "接收用位址" @@ -4809,11 +4809,11 @@ msgid "Recover from a seed you have previously written down" msgstr "" #: gui/qt/main_window.py:2985 gui/qt/address_dialog.py:92 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:75 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:75 msgid "Redeem Script" msgstr "換回指令稿" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:27 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:27 msgid "Reenter your seed phrase" msgstr "" @@ -4835,10 +4835,10 @@ msgid "Register new..." msgstr "" #: gui/qt/main_window.py:1797 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:299 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:707 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:1002 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1147 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:707 +#: ios/Vilight/vilight_gui/ios_native/send.py:1002 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1147 msgid "Remove" msgstr "移除" @@ -4860,20 +4860,20 @@ msgstr "" msgid "Remove {number_of_contacts} contacts from your contact list?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:582 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:582 msgid "Rename" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:580 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:629 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:580 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:629 msgid "Rename Wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:55 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:55 msgid "Report Contents" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:113 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:113 msgid "Report Sent" msgstr "" @@ -4885,17 +4885,17 @@ msgstr "回報臭蟲" msgid "Request &expires" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:488 +#: ios/Vilight/vilight_gui/ios_native/receive.py:488 msgid "Request URI" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:201 +#: ios/Vilight/vilight_gui/ios_native/receive.py:201 msgid "Request expires" msgstr "請求已過期" #: gui/qt/address_list.py:312 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:632 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:632 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:878 msgid "Request payment" msgstr "" @@ -4911,7 +4911,7 @@ msgstr "" msgid "Requested &amount" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:199 +#: ios/Vilight/vilight_gui/ios_native/receive.py:199 msgid "Requested amount" msgstr "請求的金額" @@ -4919,8 +4919,8 @@ msgstr "請求的金額" msgid "Requestor" msgstr "請求者" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:721 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/receive.py:721 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 msgid "Requests" msgstr "請求" @@ -4953,8 +4953,8 @@ msgstr "" msgid "Restart the CashShuffle plugin now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:815 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1544 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:815 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1544 msgid "Restore from Seed" msgstr "" @@ -4998,13 +4998,13 @@ msgstr "用來簽署支付請求的 SSL 憑證。" msgid "SSL is used to authenticate and encrypt your connections with the blockchain servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:573 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:573 msgid "Satoshi Nakamoto" msgstr "" #: gui/qt/main_window.py:2658 gui/qt/qrcodewidget.py:141 #: gui/qt/transaction_dialog.py:143 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:268 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:268 msgid "Save" msgstr "儲存" @@ -5012,8 +5012,8 @@ msgstr "儲存" msgid "Save QR Image" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:34 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:266 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:34 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:266 msgid "Save Wallet" msgstr "" @@ -5029,7 +5029,7 @@ msgstr "將發票儲存為檔案" msgid "Save your wallet labels on a remote server, and synchronize them across multiple devices where you use ViLight." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:630 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:630 msgid "Save/Export Wallet" msgstr "" @@ -5058,7 +5058,7 @@ msgid "Scrambled words" msgstr "" #: gui/qt/main_window.py:2895 gui/qt/main_window.py:2980 -#: ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py:64 +#: ios/Vilight/vilight_gui/ios_native/private_key_dialog.py:64 msgid "Script type" msgstr "" @@ -5076,11 +5076,11 @@ msgstr "" msgid "Searching for {cash_account_name} please wait ..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1802 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1802 msgid "Secure Enclave Key Reset" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2026 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2026 msgid "Secure Enclave Unavailable" msgstr "" @@ -5093,8 +5093,8 @@ msgid "Security Warning" msgstr "" #: gui/qt/main_window.py:2769 gui/qt/seed_dialog.py:208 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:289 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:33 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:289 msgid "Seed" msgstr "種苗" @@ -5102,7 +5102,7 @@ msgstr "種苗" msgid "Seed Entered" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:389 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:389 msgid "Seed Entry" msgstr "" @@ -5162,7 +5162,7 @@ msgstr "自動選取伺服器" msgid "Select server manually" msgstr "手動選取伺服器" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:318 +#: ios/Vilight/vilight_gui/ios_native/receive.py:318 msgid "Select when the payment request should expire" msgstr "" @@ -5187,9 +5187,9 @@ msgid "Select your transaction file" msgstr "選取您的交易檔案" #: gui/qt/main_window.py:164 gui/text.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:236 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:305 +#: ios/Vilight/vilight_gui/ios_native/send.py:67 +#: ios/Vilight/vilight_gui/ios_native/send.py:236 +#: ios/Vilight/vilight_gui/ios_native/gui.py:305 msgid "Send" msgstr "發送" @@ -5221,7 +5221,7 @@ msgstr "" msgid "Send via e-mail" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:117 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:117 msgid "Sending Report..." msgstr "" @@ -5234,7 +5234,7 @@ msgstr "伺服器" msgid "Server Error" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:150 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:150 msgid "Server Lagging" msgstr "" @@ -5255,7 +5255,7 @@ msgid "Server hosting your email account" msgstr "" #: gui/qt/main_window.py:881 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:679 +#: ios/Vilight/vilight_gui/ios_native/gui.py:679 msgid "Server is lagging ({} blocks)" msgstr "" @@ -5291,46 +5291,46 @@ msgstr "" #: plugins/shuffle/qt.py:1097 plugins/email_requests/qt.py:215 #: plugins/keepkey/qt.py:575 plugins/labels/qt.py:46 #: plugins/audio_modem/qt.py:46 plugins/trezor/qt.py:664 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:55 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:55 msgid "Settings" msgstr "設定值" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:500 +#: ios/Vilight/vilight_gui/ios_native/receive.py:500 msgid "Share Request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:496 +#: ios/Vilight/vilight_gui/ios_native/receive.py:496 msgid "Share as QR Image..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:495 +#: ios/Vilight/vilight_gui/ios_native/receive.py:495 msgid "Share as URI..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:203 +#: ios/Vilight/vilight_gui/ios_native/receive.py:203 msgid "Share request" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:878 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:185 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:888 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:878 +#: ios/Vilight/vilight_gui/ios_native/coins.py:185 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:888 msgid "Share/Save QR..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:786 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:786 msgid "Share/Save..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:184 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:183 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:184 msgid "Show" msgstr "顯示" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:292 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:292 msgid "Show Address QR" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:473 +#: ios/Vilight/vilight_gui/ios_native/history.py:473 msgid "Show All Transactions" msgstr "" @@ -5338,20 +5338,20 @@ msgstr "" msgid "Show Vitae IDs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:317 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:317 msgid "Show Coin Info" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:885 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:885 msgid "Show Coins (UTXOs)" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:340 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:340 msgid "Show Contact" msgstr "" #: gui/qt/main_window.py:4290 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:378 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:378 msgid "Show Fiat balance for addresses" msgstr "" @@ -5367,14 +5367,14 @@ msgstr "" msgid "Show QR Code" msgstr "顯示 QR 碼" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:305 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:305 msgid "Show Script QR" msgstr "" #: gui/qt/transaction_dialog.py:101 gui/qt/qrtextedit.py:18 #: gui/qt/qrtextedit.py:33 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:149 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:780 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:149 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:780 msgid "Show as QR code" msgstr "顯示為 QR 碼" @@ -5387,11 +5387,11 @@ msgid "Show help" msgstr "" #: gui/qt/main_window.py:4289 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:369 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:369 msgid "Show history rates" msgstr "顯示歷史費率" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:294 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:294 msgid "Show input hash QR" msgstr "" @@ -5466,7 +5466,7 @@ msgid "Shuffling Paused" msgstr "" #: gui/qt/main_window.py:3066 gui/qt/transaction_dialog.py:137 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:435 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:435 msgid "Sign" msgstr "簽署" @@ -5474,12 +5474,12 @@ msgstr "簽署" msgid "Sign all transactions using Schnorr signatures." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:37 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:37 msgid "Sign/Verify Message" msgstr "" #: gui/qt/main_window.py:3042 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:917 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:917 msgid "Sign/verify Message" msgstr "簽署/驗證訊息" @@ -5492,7 +5492,7 @@ msgid "Signature" msgstr "簽章" #: gui/qt/main_window.py:3037 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 msgid "Signature verified" msgstr "簽章已過驗證" @@ -5513,17 +5513,17 @@ msgid "Signing message..." msgstr "" #: gui/qt/main_window.py:2132 plugins/digitalbitbox/digitalbitbox.py:609 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1925 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1925 msgid "Signing transaction..." msgstr "正在簽署交易..." #: gui/qt/main_window.py:2993 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:237 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:237 msgid "Signing with an address actually means signing with the corresponding private key, and verifying with the corresponding public key. The address you have entered does not have a unique public key, so these operations cannot be performed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:361 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:550 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:361 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:550 msgid "Size:" msgstr "大小:" @@ -5537,12 +5537,12 @@ msgid "Some of your unshuffled funds may be temporarily locked while the shuffle msgstr "" #: gui/qt/exception_window.py:77 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Something went wrong running ViLight." msgstr "" #: gui/qt/exception_window.py:75 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "Sorry!" msgstr "" @@ -5551,11 +5551,11 @@ msgid "Sorry, but we were unable to check for updates. Please try again later." msgstr "" #: gui/qt/main_window.py:4291 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:388 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:388 msgid "Source" msgstr "來源" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:847 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:847 msgid "Specify a master key to re-create a deterministic wallet." msgstr "" @@ -5568,11 +5568,11 @@ msgid "Specify the account name below (limited to 99 characters):" msgstr "" #: gui/qt/utxo_list.py:197 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:248 +#: ios/Vilight/vilight_gui/ios_native/coins.py:248 msgid "Spend" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:945 +#: ios/Vilight/vilight_gui/ios_native/send.py:945 msgid "Spend From" msgstr "" @@ -5588,20 +5588,20 @@ msgstr "" msgid "Spend from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:907 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:907 msgid "Spend from this Address" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:641 +#: ios/Vilight/vilight_gui/ios_native/coins.py:641 msgid "Spend from this UTXO" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:474 +#: ios/Vilight/vilight_gui/ios_native/coins.py:474 msgid "Spend from this UTXO + Selected" msgstr "" #: gui/qt/main_window.py:4171 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:296 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:296 msgid "Spend only confirmed coins" msgstr "僅花費確認過的錢幣" @@ -5625,7 +5625,7 @@ msgstr "" msgid "Spending and linking these coins may compromise your privacy not only for new received coins, but also for your past spending of shuffled coins." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:163 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:163 msgid "Standard Wallet" msgstr "" @@ -5640,15 +5640,15 @@ msgstr "" #: gui/qt/invoice_list.py:36 gui/qt/request_list.py:42 #: gui/qt/network_dialog.py:426 plugins/shuffle/qt.py:1599 #: plugins/shuffle/qt.py:1673 plugins/shuffle/qt.py:1688 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:642 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:587 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:544 +#: ios/Vilight/vilight_gui/ios_native/receive.py:642 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:587 +#: ios/Vilight/vilight_gui/ios_native/history.py:544 msgid "Status" msgstr "狀態" #: gui/qt/transaction_dialog.py:366 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:484 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:484 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:233 msgid "Status:" msgstr "狀態:" @@ -5657,10 +5657,10 @@ msgid "Step {}/24. Enter seed word as explained on your {}:" msgstr "" #: gui/qt/main_window.py:2828 gui/qt/main_window.py:4355 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:289 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2009 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:289 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2009 msgid "Success" msgstr "成功" @@ -5688,13 +5688,13 @@ msgstr "清掃私鑰" msgid "Synchronize now?" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:147 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:147 msgid "Synchronizing" msgstr "" #: gui/qt/main_window.py:877 gui/text.py:133 gui/stdio.py:113 #: plugins/labels/qt.py:184 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:643 +#: ios/Vilight/vilight_gui/ios_native/gui.py:643 msgid "Synchronizing..." msgstr "同步中…" @@ -5706,27 +5706,27 @@ msgstr "" msgid "TREZOR wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:480 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:480 msgid "Tap to add a description" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:833 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:833 msgid "Tap to add text..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:24 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:24 msgid "Tap to enter a password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:63 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:154 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:163 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:63 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:154 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:163 msgid "Tap to enter text..." msgstr "" #: gui/qt/main_window.py:4769 gui/qt/util.py:815 #: gui/qt/transaction_dialog.py:662 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:115 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:115 msgid "Text copied to clipboard" msgstr "" @@ -5756,18 +5756,18 @@ msgstr "" msgid "The PIN cannot be longer than 9 characters." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:117 +#: ios/Vilight/vilight_gui/ios_native/send.py:117 msgid "The QR code contains multiple outputs. At this time only a single output is supported.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:120 +#: ios/Vilight/vilight_gui/ios_native/send.py:120 msgid "The QR code does not appear to be a valid VITAE address or payment request.\n" "Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:529 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:106 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:529 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:106 msgid "The QR code does not appear to be a valid VITAE address.\n" "Please try again." msgstr "" @@ -5788,10 +5788,10 @@ msgstr "手續費的金額可以由發送者自由決定。然而,低手續費 msgid "The amount will be displayed in red if you do not have enough funds in your wallet." msgstr "若您錢包中的資金不足時金額將以紅色顯示。" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:503 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:360 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:85 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:884 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:503 +#: ios/Vilight/vilight_gui/ios_native/send.py:360 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:85 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:884 msgid "The camera is not available for reading QR codes" msgstr "" @@ -5842,7 +5842,7 @@ msgstr "" msgid "The format of your wallet '%s' must be upgraded for ViLight. This change will not be backward compatible" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:343 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:343 msgid "The message has been successfully decrypted" msgstr "" @@ -5851,11 +5851,11 @@ msgid "The mnemonic needs to be 12, 18 or 24 words." msgstr "" #: gui/qt/main_window.py:2997 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:241 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:241 msgid "The operation is undefined. Not just in ViLight, but in general." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1675 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1675 msgid "The password was incorrect for this encrypted wallet, please try again." msgstr "" @@ -5907,20 +5907,20 @@ msgstr "" msgid "The plugin manifest lacks a valid version." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:936 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:936 msgid "The provided key does not appear to be a valid master key. Valid keys are long strings starting with either xpub/ypub/zpub or xprv/yprv/zprv. Please try again." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:607 +#: ios/Vilight/vilight_gui/ios_native/history.py:607 msgid "The requested transaction has dropped out of the wallet history.\n\n" -"If this problem persists, please contact us at electroncash.org." +"If this problem persists, please contact us at https://www.vitaetoken.io/." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:642 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:642 msgid "The seed you entered does not appear to be a valid wallet seed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:540 msgid "The seed you entered does not match the generated seed. Go back to the previous screen and double-check it, then try again." msgstr "" @@ -5932,7 +5932,7 @@ msgstr "" msgid "The server did not answer; network may be down." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:260 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:260 msgid "The signature for the provided message has been pasted into the signature text box." msgstr "" @@ -5948,7 +5948,7 @@ msgstr "" msgid "The specified name cannot be used for a Vitae IDs registration. You must specify 1-99 alphanumeric (ASCII) characters, without spaces (underscores are permitted as well)." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:339 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:339 msgid "The specified public key cannot decrypt this cyphertext.\n" "Please specify the correct key to decrypt." msgstr "" @@ -6023,7 +6023,7 @@ msgid "The {} device is now in an inconsistent state.\n\n" "You may have to unplug the device and plug it back in and restart what you were doing." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:308 +#: ios/Vilight/vilight_gui/ios_native/gui.py:308 msgid "There are no transactions for this wallet on the blockchain." msgstr "" @@ -6049,11 +6049,11 @@ msgid "There was an error processing the payment request" msgstr "" #: gui/qt/network_dialog.py:422 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:494 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:494 msgid "This blockchain is used to verify the transactions sent by your transaction server." msgstr "此區塊鏈用來驗證您交易伺服器送出的交易內容。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2027 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2027 msgid "This device lacks the secure enclave service. As such, Touch/Face ID based wallet authentication is unavailable." msgstr "" @@ -6086,17 +6086,17 @@ msgid "This is a preferred server" msgstr "" #: gui/qt/main_window.py:3277 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1049 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1049 msgid "This is a watching-only wallet" msgstr "這是僅限觀看錢包" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1199 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1199 msgid "This is a watching-only wallet, so the given private keys will be converted to watching addresses." msgstr "" #: gui/qt/main_window.py:3011 gui/qt/main_window.py:3083 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:247 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:316 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:247 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:316 msgid "This is a watching-only wallet." msgstr "" @@ -6105,7 +6105,7 @@ msgid "This is the fee rate that will be used for this transaction." msgstr "" #: gui/qt/network_dialog.py:439 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:499 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:499 msgid "This is the height of your local copy of the blockchain." msgstr "這是您區塊鏈的本機副本高度。" @@ -6114,12 +6114,12 @@ msgid "This may result in higher transactions fees." msgstr "這可能導致更高的交易手續費。" #: gui/qt/main_window.py:463 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1050 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1050 msgid "This means you will not be able to spend Vitae with it." msgstr "" #: gui/qt/main_window.py:1250 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1173 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1173 msgid "This payment request will be signed." msgstr "此支付請求會被簽署。" @@ -6127,14 +6127,14 @@ msgstr "此支付請求會被簽署。" msgid "This plugin facilitates the use of multi-signatures wallets." msgstr "這外掛用於多重簽章錢包" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:282 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:287 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:291 +#: ios/Vilight/vilight_gui/ios_native/receive.py:282 +#: ios/Vilight/vilight_gui/ios_native/receive.py:287 +#: ios/Vilight/vilight_gui/ios_native/receive.py:291 msgid "This request expires: {}" msgstr "" #: gui/qt/seed_dialog.py:39 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:85 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:85 msgid "This seed will allow you to recover your wallet in case of computer failure." msgstr "這種苗能讓您在電腦損壞情況中還原您的錢包。" @@ -6150,7 +6150,7 @@ msgstr "" msgid "This spending mode is the same as previous versions of ViLight, which did not offer CashShuffle." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1705 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1705 msgid "This spending wallet is not encrypted and not password protected. Sharing it over the internet could result in others intercepting the data and for you to potentially lose funds.\n\n" "Continue anyway?" msgstr "" @@ -6160,7 +6160,7 @@ msgid "This testnet wallet has an invalid master key format." msgstr "" #: gui/qt/main_window.py:2430 -#: ios/ElectronCash/electroncash_gui/ios_native/addrconv.py:47 +#: ios/Vilight/vilight_gui/ios_native/addrconv.py:47 msgid "This tool helps convert between address formats for Vitae addresses.\n" "You are encouraged to use the 'Cash address' format." msgstr "" @@ -6173,7 +6173,7 @@ msgstr "" msgid "This transaction is not saved. Close anyway?" msgstr "此交易沒有儲存。無論如何都要關閉嗎?" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "This transaction is not signed and thus lacks a transaction ID." msgstr "" @@ -6181,16 +6181,16 @@ msgstr "" msgid "This type of script is not supported with {}." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:801 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:801 msgid "This version of ViLight currently only supports sending to 1 address at a time! Sorry!" msgstr "" #: gui/qt/main_window.py:2945 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2045 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2045 msgid "This wallet has no seed" msgstr "此錢包沒有種苗" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:289 +#: ios/Vilight/vilight_gui/ios_native/coins.py:289 msgid "This wallet has no unspent outputs (coins) to display." msgstr "" @@ -6229,30 +6229,30 @@ msgid "To continue, touch the Digital Bitbox's light for 3 seconds." msgstr "" #: lib/base_wizard.py:174 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:849 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:849 msgid "To create a spending wallet, please enter a master private key (xprv/yprv/zprv)." msgstr "" #: lib/base_wizard.py:173 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:848 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:848 msgid "To create a watching-only wallet, please enter your master public key (xpub/ypub/zpub)." msgstr "" #: gui/qt/exception_window.py:80 -#: ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py:58 +#: ios/Vilight/vilight_gui/ios_native/crashreporter.py:58 msgid "To help us diagnose and fix the problem, you can send us a bug report that contains useful debug information:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1201 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1201 msgid "To import addresses into a spending wallet, you must use their private key." msgstr "" #: gui/qt/installwizard.py:391 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "To make sure that you have properly saved your seed, please retype it here." msgstr "為了確認您已正確儲存種苗,請於此處再次輸入。" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "To proceed, please select a wallet to open." msgstr "" @@ -6272,9 +6272,9 @@ msgstr "" msgid "Toggle CashShuffle" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:825 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:827 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:828 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:825 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:827 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:828 msgid "Toggle Format" msgstr "" @@ -6298,7 +6298,7 @@ msgstr "" msgid "Too small" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Tools" msgstr "" @@ -6306,25 +6306,25 @@ msgstr "" msgid "Total size" msgstr "總大小" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1998 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1998 msgid "Touch/Face ID disabled for wallet" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1994 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2260 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1994 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2260 msgid "Touch/Face ID enabled for wallet" msgstr "" #: gui/qt/transaction_dialog.py:90 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:598 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:598 msgid "Transaction" msgstr "交易" -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:631 +#: ios/Vilight/vilight_gui/ios_native/coins.py:631 msgid "Transaction Details" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:621 +#: ios/Vilight/vilight_gui/ios_native/history.py:621 msgid "Transaction History" msgstr "" @@ -6333,20 +6333,20 @@ msgid "Transaction ID" msgstr "交易 ID" #: gui/qt/transaction_dialog.py:95 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:425 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:791 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:425 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:791 msgid "Transaction ID:" msgstr "交易 ID:" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Input {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:608 +#: ios/Vilight/vilight_gui/ios_native/history.py:608 msgid "Transaction Not Found" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:233 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:233 msgid "Transaction Output {}" msgstr "" @@ -6362,7 +6362,7 @@ msgstr "" msgid "Transaction could not be broadcast due to missing, already-spent, or otherwise invalid inputs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:143 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:143 msgid "Transaction history may not yet be current." msgstr "" @@ -6375,8 +6375,8 @@ msgid "Transaction saved successfully" msgstr "" #: gui/qt/transaction_dialog.py:379 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:527 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:900 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:527 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:900 msgid "Transaction unrelated to your wallet" msgstr "交易與您的錢包無關" @@ -6389,9 +6389,9 @@ msgid "Transaction:" msgstr "交易:" #: gui/qt/main_window.py:4299 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:67 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:24 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:194 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:67 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:24 msgid "Transactions" msgstr "交易" @@ -6412,11 +6412,11 @@ msgid "Tx" msgstr "" #: gui/qt/contact_list.py:58 plugins/shuffle/qt.py:2025 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:585 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:585 msgid "Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:612 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:612 msgid "Type 'delete' to proceed" msgstr "" @@ -6425,8 +6425,8 @@ msgid "Type: '{}' below to proceed" msgstr "" #: plugins/shuffle/qt.py:1393 plugins/shuffle/qt.py:1398 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:597 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:628 +#: ios/Vilight/vilight_gui/ios_native/coins.py:597 +#: ios/Vilight/vilight_gui/ios_native/coins.py:628 msgid "UTXO" msgstr "" @@ -6450,7 +6450,7 @@ msgstr "無法建立 csv" msgid "Unable to export history" msgstr "無法匯出歷史" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:225 +#: ios/Vilight/vilight_gui/ios_native/receive.py:225 msgid "Unable to get a receiving address from your wallet!" msgstr "" @@ -6506,8 +6506,8 @@ msgid "Unfortunately, this message cannot be signed by the {}. Only alphanumeric msgstr "" #: gui/qt/address_list.py:344 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:638 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:904 +#: ios/Vilight/vilight_gui/ios_native/coins.py:638 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:904 msgid "Unfreeze" msgstr "" @@ -6533,16 +6533,16 @@ msgstr "" #: gui/qt/contact_list.py:380 gui/qt/transaction_dialog.py:352 lib/util.py:539 #: lib/exchange_rate.py:487 -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:657 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:426 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:448 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:554 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:331 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:362 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:363 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:371 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:392 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:490 +#: ios/Vilight/vilight_gui/ios_native/receive.py:657 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:426 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:448 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:554 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:331 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:362 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:363 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:371 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:392 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:490 msgid "Unknown" msgstr "未知" @@ -6550,7 +6550,7 @@ msgstr "未知" msgid "Unshuffled available:" msgstr "" -#: lib/wallet.py:720 ios/ElectronCash/electroncash_gui/ios_native/send.py:780 +#: lib/wallet.py:720 ios/Vilight/vilight_gui/ios_native/send.py:780 msgid "Unsigned" msgstr "" @@ -6558,7 +6558,7 @@ msgstr "" msgid "Unsupported Account Type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:116 +#: ios/Vilight/vilight_gui/ios_native/send.py:116 msgid "Unsupported QR Code" msgstr "" @@ -6570,7 +6570,7 @@ msgstr "" msgid "Unsupported payment data type." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:30 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:30 msgid "Unused" msgstr "" @@ -6590,7 +6590,7 @@ msgstr "" msgid "Update check failed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:146 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:146 msgid "Updating transaction history." msgstr "" @@ -6622,12 +6622,12 @@ msgstr "" msgid "Use Tor Proxy" msgstr "使用 Tor 代理" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2269 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2269 msgid "Use Touch/Face ID" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1546 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:817 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1546 msgid "Use a Master Key" msgstr "" @@ -6636,18 +6636,18 @@ msgid "Use a hardware device" msgstr "" #: gui/qt/network_dialog.py:110 gui/qt/network_dialog.py:183 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:404 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:428 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:404 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:428 msgid "Use as server" msgstr "用為伺服器" #: gui/qt/main_window.py:4123 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:281 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:281 msgid "Use change addresses" msgstr "使用變換位址" #: gui/qt/main_window.py:4142 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:288 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:288 msgid "Use multiple change addresses" msgstr "使用多重變換位址" @@ -6663,24 +6663,24 @@ msgstr "" msgid "Use setconfig to set ssl_chain and ssl_privkey." msgstr "使用 setconfig 設定 ssl_chain 和 ssl_privkey。" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Use the quick suggestions to save time." msgstr "" #: gui/qt/password_dialog.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:145 msgid "Use this dialog to add a password to your wallet." msgstr "使用此對話方塊將密碼加到您的錢包。" #: gui/qt/password_dialog.py:182 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:151 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:151 msgid "Use this dialog to change your password." msgstr "使用此對話方塊來更改您的密碼。" #: gui/qt/address_list.py:180 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:31 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:194 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:467 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:31 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:194 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:467 msgid "Used" msgstr "" @@ -6700,7 +6700,7 @@ msgstr "使用變換位址可以讓其他人更難追蹤您的交易資訊。" msgid "Using this mode presents a potential security risk." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1086 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1086 msgid "Valid" msgstr "" @@ -6713,7 +6713,7 @@ msgstr "" msgid "Verify" msgstr "驗證" -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:920 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:920 msgid "Verify Message" msgstr "" @@ -6765,11 +6765,11 @@ msgstr "檢視收據" #: gui/qt/history_list.py:248 gui/qt/address_list.py:322 #: gui/qt/contact_list.py:223 -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:870 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:295 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:783 -#: ios/ElectronCash/electroncash_gui/ios_native/coins.py:644 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:910 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:870 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:295 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:783 +#: ios/Vilight/vilight_gui/ios_native/coins.py:644 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:910 msgid "View on block explorer" msgstr "在區塊探查器上檢視" @@ -6785,7 +6785,7 @@ msgstr "" msgid "View registration tx..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:243 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:243 msgid "View the wallet seed phrase used for wallet recovery" msgstr "" @@ -6794,7 +6794,7 @@ msgid "View tx" msgstr "" #: gui/qt/console.py:62 gui/qt/seed_dialog.py:42 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:88 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:88 msgid "WARNING" msgstr "警告" @@ -6822,22 +6822,22 @@ msgstr "錢包" msgid "Wallet Information" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:642 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:642 msgid "Wallet Operations" msgstr "" #: gui/qt/main_window.py:2799 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:25 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:25 msgid "Wallet Password" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:641 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:242 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:641 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:242 msgid "Wallet Recovery Seed" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:127 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:145 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:127 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:145 msgid "Wallet Seed" msgstr "" @@ -6845,11 +6845,11 @@ msgstr "" msgid "Wallet backup created" msgstr "錢包備份已製作" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:606 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:606 msgid "Wallet deleted successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1723 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1723 msgid "Wallet file" msgstr "" @@ -6865,15 +6865,15 @@ msgstr "" msgid "Wallet name" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:232 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:232 msgid "Wallet name is empty. Please enter a wallet name to proceed." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:236 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:236 msgid "Wallet password is empty. Please set a wallet password to proceed. You can disable wallet password protection later if you wish." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:238 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:238 msgid "Wallet passwords do not match. Please confirm the password you wish to set for your wallet by entering the same password twice." msgstr "" @@ -6881,7 +6881,7 @@ msgstr "" msgid "Wallet removed: {}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1766 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1766 msgid "Wallet successfully renamed" msgstr "" @@ -6889,7 +6889,7 @@ msgstr "" msgid "Wallet type" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:303 +#: ios/Vilight/vilight_gui/ios_native/gui.py:303 msgid "Wallets" msgstr "" @@ -6922,11 +6922,11 @@ msgstr "" msgid "We encountered an error while connecting to your device:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2023 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2023 msgid "We will flag this wallet as requesting to use Touch/Face ID, however it is currently disabled on the device. Please enable Touch/Face ID from the iOS General settings in order to use biometrics for this wallet." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:29 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:29 msgid "Welcome to" msgstr "" @@ -6975,32 +6975,32 @@ msgid "Write down the seed word shown on your {}" msgstr "" #: lib/base_wizard.py:350 lib/base_wizard.py:358 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:731 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1530 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:731 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1530 msgid "Wrong key type" msgstr "" #: gui/qt/main_window.py:3039 -#: ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py:291 +#: ios/Vilight/vilight_gui/ios_native/sign_decrypt_dialog.py:291 msgid "Wrong signature" msgstr "錯誤簽章" #: plugins/keepkey/qt.py:349 plugins/trezor/qt.py:317 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:817 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1072 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:2267 +#: ios/Vilight/vilight_gui/ios_native/gui.py:817 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1072 +#: ios/Vilight/vilight_gui/ios_native/gui.py:2267 msgid "Yes" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:929 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:929 msgid "You appear to have entered more than one item. Each wallet can only have a single master key. To use multiple master keys, create a new wallet for each key." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:942 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:942 msgid "You appear to have entered no valid Vitae addresses or private keys." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:615 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:615 msgid "You are about to delete the wallet '{}'. Unless you have other copies of this wallet or you wrote its seed down, you may lose funds!\n\n" "In order to proceed, please type the word 'delete' in the box below:" msgstr "" @@ -7010,7 +7010,7 @@ msgid "You are already on the latest version of ViLight." msgstr "" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "You are following branch" msgstr "您正依循分支" @@ -7027,11 +7027,11 @@ msgstr "" msgid "You are registering a new Vitae ID for your address
{address}
" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1746 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1746 msgid "You are renaming the currently open encrypted wallet '{}'." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:593 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:593 msgid "You are requesting the deletion of the currently active wallet. In order to delete this wallet, please switch to another wallet, then select this option again on this wallet." msgstr "" @@ -7051,7 +7051,7 @@ msgstr "" msgid "You can add or remove any server from this list and optionally elect to only connect to preferred servers." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1392 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1392 msgid "You can also create a new wallet by selecting the 'Add new wallet' option." msgstr "" @@ -7059,11 +7059,11 @@ msgstr "" msgid "You can download the new version from:
{}" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:811 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:811 msgid "You can have as many wallets as you like! Choose from one of the options below:" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:403 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:403 msgid "You can restore a wallet that was created by any version of ViLight." msgstr "" @@ -7075,11 +7075,11 @@ msgstr "" msgid "You cannot access your coins or a backup without the password." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:610 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:610 msgid "You didn't enter the text 'delete' in the previous dialog. For your own safety, the wallet file was not deleted." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/contacts.py:141 +#: ios/Vilight/vilight_gui/ios_native/contacts.py:141 msgid "You don't have any contacts yet. Create a new contact now!" msgstr "" @@ -7106,7 +7106,7 @@ msgid "You may optionally append an OP_RETURN message to the payment URI and/or "Note: Not all wallets yet support OP_RETURN parameters, so make sure the other party's wallet supports OP_RETURN URIs." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:501 +#: ios/Vilight/vilight_gui/ios_native/receive.py:501 msgid "You may share this payment request as a 'vitae:' style URI, or as a QR Code Image." msgstr "" @@ -7126,7 +7126,7 @@ msgstr "" msgid "You need to create a separate ViLight wallet for each passphrase you use as they each generate different addresses. Changing your passphrase does not lose other wallets, each is still accessible behind its own passphrase." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:454 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:454 msgid "You need to sign this transaction in order for it to get a transaction ID." msgstr "" @@ -7134,7 +7134,7 @@ msgstr "" msgid "You should enable PIN protection. Your PIN is the only protection for your bitcoins if your device is lost or stolen." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:570 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:570 msgid "You specified the same name!" msgstr "" @@ -7155,13 +7155,13 @@ msgstr "" msgid "Your accounts have been moved to" msgstr "您的帳號已移動到" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1803 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1803 msgid "Your biometrics-based key for this wallet was reset. This means you will need to enter your password for this wallet again.\n\n" "(Then, you can optionally re-enable Touch/Face ID as before.)" msgstr "" #: gui/qt/password_dialog.py:179 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:148 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:148 msgid "Your bitcoins are password protected. However, your wallet file is not encrypted." msgstr "您的比特幣已受密碼保護。然而,您的錢包檔案尚未加密。" @@ -7182,7 +7182,7 @@ msgid "Your entire transaction history will be downloaded again from the server msgstr "" #: gui/qt/main_window.py:2048 -#: ios/ElectronCash/electroncash_gui/ios_native/send.py:831 +#: ios/Vilight/vilight_gui/ios_native/send.py:831 msgid "Your fee is too high. Max is 500 sat/byte." msgstr "" @@ -7198,7 +7198,7 @@ msgstr "" msgid "Your labels were imported from" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1343 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1343 msgid "Your new imported wallet has been successfully created. Would you like to switch to it now?" msgstr "" @@ -7211,7 +7211,7 @@ msgid "Your own Vitae IDs are now shown" msgstr "" #: gui/qt/seed_dialog.py:158 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:79 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:79 msgid "Your seed extension is" msgstr "您的種苗擴展為" @@ -7220,12 +7220,12 @@ msgid "Your seed extension must be saved together with your seed." msgstr "" #: gui/qt/installwizard.py:389 -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:401 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:401 msgid "Your seed is important!" msgstr "您的種苗至關重要!" #: gui/qt/network_dialog.py:535 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:264 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:264 msgid "Your server is on branch" msgstr "您的伺服器位在分支" @@ -7238,7 +7238,7 @@ msgid "Your transaction was sent to the cosigning pool." msgstr "" #: gui/qt/seed_dialog.py:211 gui/qt/installwizard.py:398 -#: ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py:78 +#: ios/Vilight/vilight_gui/ios_native/seed_dialog.py:78 msgid "Your wallet generation seed is:" msgstr "您的錢包生成種苗為:" @@ -7247,12 +7247,12 @@ msgid "Your wallet history has been successfully exported." msgstr "您的錢包歷史記錄已經成功匯入。" #: gui/qt/password_dialog.py:175 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:144 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:144 msgid "Your wallet is not protected." msgstr "您的錢包尚未受到保護。" #: gui/qt/password_dialog.py:181 -#: ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py:150 +#: ios/Vilight/vilight_gui/ios_native/password_dialog.py:150 msgid "Your wallet is password protected and encrypted." msgstr "您的錢包已由密碼保護並加密。" @@ -7265,7 +7265,7 @@ msgid "Your {} might not have support for this functionality." msgstr "" #: gui/qt/main_window.py:3881 -#: ios/ElectronCash/electroncash_gui/ios_native/prefs.py:319 +#: ios/Vilight/vilight_gui/ios_native/prefs.py:319 msgid "Zeros after decimal point" msgstr "小數點後位數" @@ -7326,7 +7326,7 @@ msgstr "" msgid "active" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1540 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1540 msgid "and create your standard wallet or restore an existing one with any of the methods below" msgstr "" @@ -7335,8 +7335,8 @@ msgid "are frozen" msgstr "已凍結" #: gui/qt/network_dialog.py:523 gui/qt/network_dialog.py:536 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:254 -#: ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py:265 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:254 +#: ios/Vilight/vilight_gui/ios_native/network_dialog.py:265 msgid "blocks" msgstr "區塊" @@ -7344,8 +7344,8 @@ msgstr "區塊" msgid "color" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:497 -#: ios/ElectronCash/electroncash_gui/ios_native/history.py:540 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:497 +#: ios/Vilight/vilight_gui/ios_native/history.py:540 msgid "confirmations" msgstr "" @@ -7357,7 +7357,7 @@ msgstr "共同簽署者" msgid "decrypting..." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/wallets.py:601 +#: ios/Vilight/vilight_gui/ios_native/wallets.py:601 msgid "delete" msgstr "" @@ -7373,7 +7373,7 @@ msgstr "" msgid "initialized" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:1197 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:1197 msgid "invalid items will be discarded" msgstr "" @@ -7398,7 +7398,7 @@ msgid "password incorrect" msgstr "" #: gui/qt/main_window.py:2239 -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:1158 +#: ios/Vilight/vilight_gui/ios_native/gui.py:1158 msgid "please wait..." msgstr "請稍候..." @@ -7433,15 +7433,15 @@ msgstr "" #: gui/qt/fee_slider.py:28 gui/qt/qrreader/camera_dialog.py:289 #: gui/qt/transaction_dialog.py:396 gui/qt/transaction_dialog.py:558 #: lib/wallet.py:1191 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:176 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:243 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:557 -#: ios/ElectronCash/electroncash_gui/ios_native/feeslider.py:76 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:176 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:243 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:557 +#: ios/Vilight/vilight_gui/ios_native/feeslider.py:76 msgid "unknown" msgstr "未知" #: gui/qt/transaction_dialog.py:373 -#: ios/ElectronCash/electroncash_gui/ios_native/txdetail.py:513 +#: ios/Vilight/vilight_gui/ios_native/txdetail.py:513 msgid "unknown (low fee)" msgstr "" @@ -7462,7 +7462,7 @@ msgid "unverified" msgstr "" #: gui/qt/main_window.py:451 -#: ios/ElectronCash/electroncash_gui/ios_native/addresses.py:190 +#: ios/Vilight/vilight_gui/ios_native/addresses.py:190 msgid "watching only" msgstr "僅關注" @@ -7470,7 +7470,7 @@ msgstr "僅關注" msgid "wiped" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/newwallet.py:31 +#: ios/Vilight/vilight_gui/ios_native/newwallet.py:31 msgid "without downloading the blockchain or running a full node." msgstr "" @@ -7533,15 +7533,15 @@ msgstr "" msgid "{} contacts successfully imported." msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:367 +#: ios/Vilight/vilight_gui/ios_native/utils.py:367 msgid "{} copied to clipboard" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:298 +#: ios/Vilight/vilight_gui/ios_native/receive.py:298 msgid "{} days" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:377 +#: ios/Vilight/vilight_gui/ios_native/utils.py:377 msgid "{} exported successfully" msgstr "" @@ -7549,7 +7549,7 @@ msgstr "" msgid "{} firmware version too old. Please update at https://www.ledgerwallet.com" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:299 +#: ios/Vilight/vilight_gui/ios_native/receive.py:299 msgid "{} hours" msgstr "" @@ -7557,11 +7557,11 @@ msgstr "" msgid "{} is temporarily locked - please unplug it and replug it again" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:300 +#: ios/Vilight/vilight_gui/ios_native/receive.py:300 msgid "{} mins" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/gui.py:775 +#: ios/Vilight/vilight_gui/ios_native/gui.py:775 msgid "{} new transactions received: Total amount received in the new transactions {}" msgstr "" @@ -7573,23 +7573,23 @@ msgstr "" msgid "{} not in Vitae mode" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:369 +#: ios/Vilight/vilight_gui/ios_native/utils.py:369 msgid "{} saved successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:375 +#: ios/Vilight/vilight_gui/ios_native/utils.py:375 msgid "{} saved to photo library" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/receive.py:301 +#: ios/Vilight/vilight_gui/ios_native/receive.py:301 msgid "{} secs" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:371 +#: ios/Vilight/vilight_gui/ios_native/utils.py:371 msgid "{} sent successfully" msgstr "" -#: ios/ElectronCash/electroncash_gui/ios_native/utils.py:373 +#: ios/Vilight/vilight_gui/ios_native/utils.py:373 msgid "{} sent to printer" msgstr "" diff --git a/contrib/fonts/glyphs.txt b/contrib/fonts/glyphs.txt index 955225e51..b4b414a28 100644 --- a/contrib/fonts/glyphs.txt +++ b/contrib/fonts/glyphs.txt @@ -1,4 +1,4 @@ -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/contrib/fonts/make_emojis b/contrib/fonts/make_emojis index 511762e68..e7d33e4e5 100755 --- a/contrib/fonts/make_emojis +++ b/contrib/fonts/make_emojis @@ -1,6 +1,6 @@ #!/bin/sh -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/contrib/make_locale b/contrib/make_locale index d815cffdc..7b976d012 100755 --- a/contrib/make_locale +++ b/contrib/make_locale @@ -16,7 +16,7 @@ os.chdir('..') code_directories = [ 'android/app/src/main/python', 'gui', - 'ios/ElectronCash/electroncash_gui', # ios/ElectronCash could contain duplicate files + 'ios/Vilight/vilight_gui', # ios/Vilight could contain duplicate files # copied by make_ios_project.sh. 'lib', 'plugins', @@ -90,6 +90,6 @@ for lang in os.listdir('locale'): msg_dir = 'locale/{}/LC_MESSAGES'.format(lang) if not os.path.exists(msg_dir): os.mkdir(msg_dir) - cmd = 'msgfmt --output-file="{0}/electron-cash.mo" "{0}/electron-cash.po"'.format(msg_dir) + cmd = 'msgfmt --output-file="{0}/vilight.mo" "{0}/vilight.po"'.format(msg_dir) print('Installing', lang) os.system(cmd) diff --git a/contrib/make_secp b/contrib/make_secp index b631e4c23..8e2bcd656 100755 --- a/contrib/make_secp +++ b/contrib/make_secp @@ -45,6 +45,6 @@ git checkout master # Undo the previous explicit checkout to this hash git clean -dfxq popd -info "$libsec_lib has been placed in the electroncash 'lib' folder." +info "$libsec_lib has been placed in the vilight 'lib' folder." popd diff --git a/contrib/make_zbar b/contrib/make_zbar index b74c1c755..bcf0264fb 100755 --- a/contrib/make_zbar +++ b/contrib/make_zbar @@ -50,6 +50,6 @@ git checkout master # Undo the previous explicit checkout to this hash git clean -dfxq popd -info "$libzbar_lib has been placed in the electroncash 'lib' folder." +info "$libzbar_lib has been placed in the vilight 'lib' folder." popd diff --git a/contrib/osx/README.md b/contrib/osx/README.md index 2478ed57b..732fd15d7 100644 --- a/contrib/osx/README.md +++ b/contrib/osx/README.md @@ -27,4 +27,4 @@ Or, if you wish to sign the app when building, provide an Apple developer identi ## 2. Done -You should see Electron-Cash.app and Electron-Cash-x.y.z.dmg in ../dist/. If you provided an identity for signing, these files can even be distributed to other Macs and they will run there without warnings from GateKeeper. +You should see Electron-Cash.app and Vilight-x.y.z.dmg in ../dist/. If you provided an identity for signing, these files can even be distributed to other Macs and they will run there without warnings from GateKeeper. diff --git a/contrib/osx/make_osx b/contrib/osx/make_osx index 40e7b70a7..91f10594b 100755 --- a/contrib/osx/make_osx +++ b/contrib/osx/make_osx @@ -126,15 +126,15 @@ info "Making locale..." python3 ./contrib/make_locale || fail "Failed to make locale..." info "Downloading libusb..." -curl -L https://github.com/cculianu/Electron-Cash-Build-Tools/releases/download/v1.0/libusb-1.0.21.el_capitan.bottle.tar.gz | \ +curl -L https://github.com/VitaeTeam/Vilight-Build-Tools/releases/download/v1.0.1/libusb-1.0.21.el_capitan.bottle.tar.gz | \ tar xz --directory $BUILDDIR || fail "Could not download libusb" verify_hash $BUILDDIR/libusb/1.0.21/lib/libusb-1.0.dylib d147e7382dfa676d93e8b17d160d50f68e4b01f58f3647c90a8899a7a0519ca3 # this exits on failure cp -fp $BUILDDIR/libusb/1.0.21/lib/libusb-1.0.dylib contrib/osx || fail "Could not copy libusb" info "Downloading ZBar dylib..." -curl -L https://github.com/cculianu/Electron-Cash-Build-Tools/releases/download/v1.0/v0.23-libzbar.0.dylib.xz | \ +curl -L https://github.com/VitaeTeam/Vilight-Build-Tools/releases/download/v1.0.1/libzbar.0.dylib.xz | \ xz -d -c > contrib/osx/libzbar.0.dylib || fail "Could not download libzbar" -verify_hash contrib/osx/libzbar.0.dylib 7b82238dd73e56d9f57913230ea5418c247b292cf96c8996becda961ab001c85 +verify_hash contrib/osx/libzbar.0.dylib 60970c28db13731657eaf6b1c527082b463779737da4aeecfc07645684812753 info "Building libsecp256k1" pushd contrib/secp256k1 || fail "Could not chdir to contrib/secp256k1" diff --git a/contrib/osx/osx.spec b/contrib/osx/osx.spec index bcc603072..ccdff5682 100644 --- a/contrib/osx/osx.spec +++ b/contrib/osx/osx.spec @@ -4,8 +4,8 @@ from PyInstaller.utils.hooks import collect_data_files, collect_submodules, coll import sys, os PACKAGE='ViLight' -BUNDLE_IDENTIFIER='org.electroncash.' + PACKAGE # Used for info.plist -PYPKG='electroncash' +BUNDLE_IDENTIFIER='org.vilight.' + PACKAGE # Used for info.plist +PYPKG='vilight' MAIN_SCRIPT='vilight' ICONS_FILE='electron.icns' diff --git a/contrib/package_plugin.py b/contrib/package_plugin.py index 4b9ffe557..272c7f60c 100755 --- a/contrib/package_plugin.py +++ b/contrib/package_plugin.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2018 Electron Cash developers # # Permission is hereby granted, free of charge, to any person @@ -152,11 +152,11 @@ def __init__(self): self.descriptionEdit.setPlaceholderText("Add scheduled payments at a fixed time either on a given day every week, or a specific day every month.") self.descriptionEdit.setAcceptRichText(False) groupLayout.addRow('Description', self.descriptionEdit) - self.minimumElectronCashVersionEdit = QLineEdit() - self.minimumElectronCashVersionEdit.setPlaceholderText("3.2") - self.minimumElectronCashVersionEdit.setMaximumWidth(50) - self.minimumElectronCashVersionEdit.setToolTip("This is the lowest version of ViLight which this plugin can be installed with.") - groupLayout.addRow('Minimum Electron Cash Version', self.minimumElectronCashVersionEdit) + self.minimumVilightVersionEdit = QLineEdit() + self.minimumVilightVersionEdit.setPlaceholderText("3.2") + self.minimumVilightVersionEdit.setMaximumWidth(50) + self.minimumVilightVersionEdit.setToolTip("This is the lowest version of ViLight which this plugin can be installed with.") + groupLayout.addRow('Minimum Electron Cash Version', self.minimumVilightVersionEdit) availableVLayout = QVBoxLayout() self.qtAvailableCheckBox = QCheckBox("Supports the Qt user interface") @@ -200,7 +200,7 @@ def __init__(self): self.versionEdit.textEdited.connect(self.on_required_text_change) self.projectUrlEdit.textEdited.connect(self.on_required_text_change) self.descriptionEdit.textChanged.connect(self.on_required_text_change) - self.minimumElectronCashVersionEdit.textEdited.connect(self.on_required_text_change) + self.minimumVilightVersionEdit.textEdited.connect(self.on_required_text_change) self.refresh_ui() self.show() @@ -212,11 +212,11 @@ def refresh_ui(self): except ValueError: versionText = "" - minimumElectronCashVersionText = self.minimumElectronCashVersionEdit.text().strip() + minimumVilightVersionText = self.minimumVilightVersionEdit.text().strip() try: - versiontuple(minimumElectronCashVersionText) + versiontuple(minimumVilightVersionText) except ValueError: - minimumElectronCashVersionText = "" + minimumVilightVersionText = "" projectUrlText = self.projectUrlEdit.text().strip() url_components = urllib.parse.urlparse(projectUrlText) @@ -227,7 +227,7 @@ def refresh_ui(self): have_basics = have_basics and len(versionText) > 0 have_basics = have_basics and len(projectUrlText) > 0 have_basics = have_basics and len(self.descriptionEdit.toPlainText().strip()) > 3 - have_basics = have_basics and len(minimumElectronCashVersionText) > 0 + have_basics = have_basics and len(minimumVilightVersionText) > 0 have_basics = have_basics and (self.qtAvailableCheckBox.checkState() == Qt.Checked or self.cmdlineAvailableCheckBox.checkState() == Qt.Checked) can_export = have_basics @@ -275,7 +275,7 @@ def build_manifest(self): version = self.versionEdit.text().strip() project_url = self.projectUrlEdit.text().strip() description = self.descriptionEdit.toPlainText().strip() - minimum_ec_version = self.minimumElectronCashVersionEdit.text().strip() + minimum_ec_version = self.minimumVilightVersionEdit.text().strip() package_name = None if self.directory_path is not None: package_name = os.path.basename(self.directory_path) @@ -319,7 +319,7 @@ def on_import_clicked(self): self.versionEdit.setText(str(metadata.get("version", ""))) self.projectUrlEdit.setText(str(metadata.get("project_url", ""))) self.descriptionEdit.setText(str(metadata.get("description", ""))) - self.minimumElectronCashVersionEdit.setText(str(metadata.get("minimum_ec_version", ""))) + self.minimumVilightVersionEdit.setText(str(metadata.get("minimum_ec_version", ""))) package_name = str(metadata.get("package_name", "")).strip() if len(package_name): manifest_path, manifest_filename = os.path.split(self.manifest_file_path) diff --git a/contrib/secp_HOWTO.md b/contrib/secp_HOWTO.md index 9cd321382..d6f8fe9a0 100644 --- a/contrib/secp_HOWTO.md +++ b/contrib/secp_HOWTO.md @@ -1,9 +1,9 @@ -# libsecp256k1-0 for Electron Cash +# libsecp256k1-0 for Vilight ## Mini HOW-TO ![CodeIcon](https://img.icons8.com/color/96/000000/smartphone-cpu.png) -If you have gotten to this page, likely you have been sent here by Electron Cash's dialog informing you that you don't have **libsecp** installed. The purpose of this document is to instruct you on how to rectify the situation. +If you have gotten to this page, likely you have been sent here by Vilight. Vilight's dialog informing you that you don't have **libsecp** installed. The purpose of this document is to instruct you on how to rectify the situation. ### About libsecp256k1-0 @@ -13,18 +13,18 @@ This library was originally developed by [Peter Wuille](https://twitter.com/pwui Electron Cash's [CashShuffle](https://www.cashshuffle.com) makes heavy use elliptic curve cryptography with each message sent. Since Python-only cryptography is incredibly slow (and potentially susceptible to side-channel exploits), libsecp is required for [CashShuffle](https://www.cashshuffle.com) within Electron Cash. The reason for this requirement is simple: you would be interfering with the speed and security of other shufflers by *not* using libsecp. Thus in order to be a reliable partner for other shuffle participants, Electron Cash requires you to use this library if you want to enable [CashShuffle](https://www.cashshuffle.com). -### Using libsecp with Electron Cash +### Using libsecp with Vilight You have a few options: - - If on **Windows**, it's recommended you run one of the [release .exe files available here](https://www.electroncash.org/#download). The library is included in the `.exe`. - - If on **macOS**, it's recommended you install Electron Cash from the [release .dmg available here](https://www.electroncash.org/#download). The library is included in the `.app` bundle. - - For **Linux x86_64** (the most common architecture), the Electron Cash [release srcdist .tar.gz available here](https://www.electroncash.org/#download) should have the library pre-compiled and living in the `lib/` subfolder of the tarball. You can simply run Electron Cash "from source" (which, paradoxically, does include a compiled library embedded within it), and it should work. + - If on **Windows**, it's recommended you run one of the [release .exe files available here](https://github.com/VitaeTeam/ViLight/releases). The library is included in the `.exe`. + - If on **macOS**, it's recommended you install Electron Cash from the [release .dmg available here](https://github.com/VitaeTeam/ViLight/releases). The library is included in the `.app` bundle. + - For **Linux x86_64** (the most common architecture), the Vilight [release srcdist .tar.gz available here](https://github.com/VitaeTeam/ViLight/releases) should have the library pre-compiled and living in the `lib/` subfolder of the tarball. You can simply run Electron Cash "from source" (which, paradoxically, does include a compiled library embedded within it), and it should work. - For other architectures and/or Unixey OS's, or if running from *git head* then proceed to the sections below. ### If running from github head -- dev mode ;) - - `git clone` the latest git head from [https://github.com/Electron-Cash/Electron-Cash](https://github.com/Electron-Cash/Electron-Cash) (or `git pull` from master if you already have it cloned). + - `git clone` the latest git head from [https://github.com/VitaeTeam/ViLight](https://github.com/VitaeTeam/ViLight) (or `git pull` from master if you already have it cloned). - run the script `contrib/make_secp` - **Done!** If all goes well, `libsecp256k1` should low live alongside the Python files in the lib/ subfolder of Electron Cash. If not, make sure you have a C-compiler installed on the system as well as automake, and libtool installed and try again. @@ -38,12 +38,12 @@ Chances are you either are on an exotic architecture (such as 32 bit Intel, non- The steps are as follows: - - You will need to `git clone` the repository from [https://github.com/Electron-Cash/Electron-Cash](https://github.com/Electron-Cash/Electron-Cash) + - You will need to `git clone` the repository from [https://github.com/VitaeTeam/ViLight](https://github.com/VitaeTeam/ViLight) - Proceed to the **"github head"** section above. ### Last resort: Try your package manager -We say this is a last resort because in the future Electron Cash will benefit from the customized *[Bitcoin ABC](https://github.com/Bitcoin-ABC/bitcoin-abc/tree/master/src/secp256k1)* based libsecp we provide (with the Schnorr signature module enabled). But for now, your package manager's `libsecp256k1-0` will be sufficient. *Note: Not all distributions provide this library as a package, so your mileage may vary.* +We say this is a last resort because in the future ViLight will benefit from the customized *[Bitcoin ABC](https://github.com/Bitcoin-ABC/bitcoin-abc/tree/master/src/secp256k1)* based libsecp we provide (with the Schnorr signature module enabled). But for now, your package manager's `libsecp256k1-0` will be sufficient. *Note: Not all distributions provide this library as a package, so your mileage may vary.* Example Ubuntu command: ``` @@ -52,4 +52,4 @@ $ sudo apt install libsecp256k1-0 #### The above all failed! What now?! -[Open an issue](https://github.com/Electron-Cash/Electron-Cash/issues) in our github issue tracker. +[Open an issue](https://github.com/VitaeTeam/ViLight/issues) in our github issue tracker. diff --git a/contrib/update_checker/README.md b/contrib/update_checker/README.md index 631a82dfc..9741eed36 100644 --- a/contrib/update_checker/README.md +++ b/contrib/update_checker/README.md @@ -1,7 +1,7 @@ # Electron Cash Update Checker ### (`releases.json`) -This directory contains the `releases.json` file that the Electron Cash update checker uses to determine when a new version of ViLight is available. +This directory contains the `releases.json` file that the Vilight update checker uses to determine when a new version of ViLight is available. #### Update Checker Overview As of version 3.3.6 of Electron Cash, there is an update-checking facility built-in to the Qt desktop app. The facility basically functions as follows: @@ -10,7 +10,7 @@ As of version 3.3.6 of Electron Cash, there is an update-checking facility built 2. It downloads `releases.json` (the file in this directory) 3. It checks the versions seen in `releases.json` -- if they are newer than the version in the running app, and if the signed message is valid and is signed with one of the addresses hard-coded in `update_checker.py`, it then informs the user that an update is available. -*No automatic updating is performed* and the user must manually click on the URL hard-coded in the app to go to https://electroncash.org/#download. +*No automatic updating is performed* and the user must manually click on the URL hard-coded in the app to go to https://https://www.vitaetoken.io//#download. The purpose of this facility is merely as a convenience for users who aren't on reddit or aren't constantly refreshing our website to be able to find out when a new version is available. diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py index 757877d26..22ead1de5 100644 --- a/gui/qt/__init__.py +++ b/gui/qt/__init__.py @@ -53,14 +53,14 @@ from PyQt5.QtWidgets import * from PyQt5.QtCore import * -from electroncash.i18n import _, set_language -from electroncash.plugins import run_hook -from electroncash import WalletStorage -from electroncash.util import (UserCancelled, PrintError, print_error, +from vilight.i18n import _, set_language +from vilight.plugins import run_hook +from vilight import WalletStorage +from vilight.util import (UserCancelled, PrintError, print_error, standardize_path, finalization_print_error, Weak, get_new_wallet_name) -from electroncash import version -from electroncash.address import Address +from vilight import version +from vilight.address import Address from .installwizard import InstallWizard, GoBack @@ -96,10 +96,10 @@ def __init__(self, config, daemon, plugins): # Uncomment this call to verify objects are being properly # GC-ed when windows are closed #if daemon.network: - # from electroncash.util import DebugMem - # from electroncash.wallet import Abstract_Wallet - # from electroncash.verifier import SPV - # from electroncash.synchronizer import Synchronizer + # from vilight.util import DebugMem + # from vilight.wallet import Abstract_Wallet + # from vilight.verifier import SPV + # from vilight.synchronizer import Synchronizer # daemon.network.add_jobs([DebugMem([Abstract_Wallet, SPV, Synchronizer, # ElectrumWindow], interval=5)]) QCoreApplication.setAttribute(Qt.AA_X11InitThreads) @@ -647,13 +647,13 @@ def warn_if_no_secp(self, parent=None, message=None, icon=QMessageBox.Warning, r Pass message (rich text) to provide a custom message. Note that the URL link to the HOWTO will always be appended to the custom message.''' - from electroncash import ecc_fast + from vilight import ecc_fast has_secp = ecc_fast.is_using_fast_ecc() if has_secp: return False # When relaxwarn is set return True without showing the warning - from electroncash import get_config + from vilight import get_config if relaxed and get_config().cmdline_options["relaxwarn"]: return True diff --git a/gui/qt/address_dialog.py b/gui/qt/address_dialog.py index 6ed5226e5..a91773450 100644 --- a/gui/qt/address_dialog.py +++ b/gui/qt/address_dialog.py @@ -23,9 +23,9 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -from electroncash.i18n import _ -from electroncash.address import Address -from electroncash.util import PrintError +from vilight.i18n import _ +from vilight.address import Address +from vilight.util import PrintError from PyQt5.QtCore import * from PyQt5.QtGui import * diff --git a/gui/qt/address_list.py b/gui/qt/address_list.py index 2fb99296d..46cf8c818 100644 --- a/gui/qt/address_list.py +++ b/gui/qt/address_list.py @@ -30,12 +30,12 @@ from PyQt5.QtCore import Qt, pyqtSignal from PyQt5.QtGui import QFont, QColor, QKeySequence, QCursor, QIcon from PyQt5.QtWidgets import QTreeWidgetItem, QAbstractItemView, QMenu, QToolTip -from electroncash.i18n import _ -from electroncash.address import Address -from electroncash.plugins import run_hook -import electroncash.web as web -from electroncash.util import profiler -from electroncash import networks +from vilight.i18n import _ +from vilight.address import Address +from vilight.plugins import run_hook +import vilight.web as web +from vilight.util import profiler +from vilight import networks from enum import IntEnum from . import cashacctqt @@ -246,7 +246,7 @@ def restore_expanded_items(root, expanded_item_names): def create_menu(self, position): - from electroncash.wallet import Multisig_Wallet + from vilight.wallet import Multisig_Wallet is_multisig = isinstance(self.wallet, Multisig_Wallet) can_delete = self.wallet.can_delete_address() selected = self.selectedItems() diff --git a/gui/qt/amountedit.py b/gui/qt/amountedit.py index 08332edbb..da2f05ffb 100644 --- a/gui/qt/amountedit.py +++ b/gui/qt/amountedit.py @@ -5,7 +5,7 @@ from PyQt5.QtWidgets import (QLineEdit, QStyle, QStyleOptionFrame) from decimal import Decimal as PyDecimal # Qt 5.12 also exports Decimal -from electroncash.util import format_satoshis_plain, inv_base_units +from vilight.util import format_satoshis_plain, inv_base_units from .util import ColorScheme class MyLineEdit(QLineEdit): diff --git a/gui/qt/bip38_importer.py b/gui/qt/bip38_importer.py index 9f01d374c..86acd30ed 100644 --- a/gui/qt/bip38_importer.py +++ b/gui/qt/bip38_importer.py @@ -9,8 +9,8 @@ from .util import * -from electroncash.i18n import _ -from electroncash import util, bitcoin, address +from vilight.i18n import _ +from vilight import util, bitcoin, address class Bip38Importer(WindowModalDialog, util.PrintError): ''' A drop-in GUI element for implementing a BIP38 import dialog. diff --git a/gui/qt/cashacctqt.py b/gui/qt/cashacctqt.py index 168642bbb..6a1ba3050 100644 --- a/gui/qt/cashacctqt.py +++ b/gui/qt/cashacctqt.py @@ -38,12 +38,12 @@ import requests from typing import Tuple, List, Callable from enum import IntEnum -from electroncash import cashacct -from electroncash import util -from electroncash import web -from electroncash.address import Address, UnknownAddress -from electroncash.i18n import _, ngettext -from electroncash.wallet import Abstract_Wallet +from vilight import cashacct +from vilight import util +from vilight import web +from vilight.address import Address, UnknownAddress +from vilight.i18n import _, ngettext +from vilight.wallet import Abstract_Wallet class VerifyingDialog(WaitingDialog): @@ -166,7 +166,7 @@ def resolve_verify(): if not isinstance(info.address, Address): raise Bad(_("Unsupported payment data type.") + "\n\n" + _("The Vitae ID {name} uses an account type that " - "is not supported by Electron Cash.").format(name=name)) + "is not supported by Vilight. Vilight.").format(name=name)) return info, name except Bad as e: parent.show_error(str(e)) @@ -574,7 +574,7 @@ def lookup_cash_account_dialog( #acct.setFixedWidth(280) - label = HelpLabel(_("&Vitae ID Name"), _("Enter a Vitae ID name of the form Name#123.45, and Electron Cash will search for the contact and present you with its resolved address.")) + label = HelpLabel(_("&Vitae ID Name"), _("Enter a Vitae ID name of the form Name#123.45, and ViLight will search for the contact and present you with its resolved address.")) label.setBuddy(acct) search = QPushButton(_("Lookup")) search.setEnabled(False) @@ -770,7 +770,7 @@ def cash_account_detail_dialog(parent : MessageBoxMixin, # Should be an Electru if not isinstance(info.address, Address): parent.show_error(_("Unsupported payment data type.") + "\n\n" + _("The Vitae ID {name} uses an account type that " - "is not supported by Electron Cash.").format(name=ca_string)) + "is not supported by Vilight. Vilight.").format(name=ca_string)) return False title = title or _("Vitae ID Details") diff --git a/gui/qt/console.py b/gui/qt/console.py index 1f02e562e..808da71f4 100644 --- a/gui/qt/console.py +++ b/gui/qt/console.py @@ -11,8 +11,8 @@ from PyQt5 import QtGui from PyQt5 import QtWidgets -from electroncash import util, get_config -from electroncash.i18n import _ +from vilight import util, get_config +from vilight.i18n import _ from .util import ColorScheme, MONOSPACE_FONT diff --git a/gui/qt/contact_list.py b/gui/qt/contact_list.py index 15affe285..25a32492d 100644 --- a/gui/qt/contact_list.py +++ b/gui/qt/contact_list.py @@ -23,12 +23,12 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -from electroncash.i18n import _, ngettext -import electroncash.web as web -from electroncash.address import Address -from electroncash.contacts import Contact, contact_types -from electroncash.plugins import run_hook -from electroncash.util import FileImportFailed, PrintError, finalization_print_error +from vilight.i18n import _, ngettext +import vilight.web as web +from vilight.address import Address +from vilight.contacts import Contact, contact_types +from vilight.plugins import run_hook +from vilight.util import FileImportFailed, PrintError, finalization_print_error # TODO: whittle down these * imports to what we actually use when done with # our changes to this class -Calin from PyQt5.QtGui import * diff --git a/gui/qt/exception_window.py b/gui/qt/exception_window.py index db1ea64d9..fbc659102 100644 --- a/gui/qt/exception_window.py +++ b/gui/qt/exception_window.py @@ -35,10 +35,10 @@ from PyQt5.QtGui import QIcon from PyQt5.QtWidgets import * -from electroncash.i18n import _ +from vilight.i18n import _ import sys -from electroncash import PACKAGE_VERSION -from electroncash.util import print_error, finalization_print_error +from vilight import PACKAGE_VERSION +from vilight.util import print_error, finalization_print_error from .main_window import ElectrumWindow from .util import destroyed_print_error diff --git a/gui/qt/external_plugins_window.py b/gui/qt/external_plugins_window.py index a819e869e..8468f6cd8 100644 --- a/gui/qt/external_plugins_window.py +++ b/gui/qt/external_plugins_window.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2018 Electron Cash developers # # Permission is hereby granted, free of charge, to any person @@ -31,8 +31,8 @@ from PyQt5.QtCore import * from PyQt5.QtWidgets import * -from electroncash.i18n import _ -from electroncash.plugins import ExternalPluginCodes, run_hook +from vilight.i18n import _ +from vilight.plugins import ExternalPluginCodes, run_hook from .util import MyTreeWidget, MessageBoxMixin, WindowModalDialog, Buttons, CloseButton diff --git a/gui/qt/fee_slider.py b/gui/qt/fee_slider.py index d10ad13c9..573d2f1ed 100644 --- a/gui/qt/fee_slider.py +++ b/gui/qt/fee_slider.py @@ -1,5 +1,5 @@ -from electroncash.i18n import _ +from vilight.i18n import _ from PyQt5.QtGui import * from PyQt5.QtCore import * @@ -24,7 +24,7 @@ def moved(self, pos): self.callback(self.dyn, pos, fee_rate) def get_tooltip(self, pos, fee_rate): - from electroncash.util import fee_levels + from vilight.util import fee_levels rate_str = self.window.format_fee_rate(fee_rate) if fee_rate else _('unknown') if self.config.has_custom_fee_rate(): tooltip = _('Custom rate: ') + rate_str diff --git a/gui/qt/history_list.py b/gui/qt/history_list.py index a0c906d53..e5d5950de 100644 --- a/gui/qt/history_list.py +++ b/gui/qt/history_list.py @@ -24,10 +24,10 @@ # SOFTWARE. from .util import * -import electroncash.web as web -from electroncash.i18n import _ -from electroncash.util import timestamp_to_datetime, profiler, Weak -from electroncash.plugins import run_hook +import vilight.web as web +from vilight.i18n import _ +from vilight.util import timestamp_to_datetime, profiler, Weak +from vilight.plugins import run_hook TX_ICONS = [ diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 3d0e1574f..fe090bde3 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -8,10 +8,10 @@ from PyQt5.QtGui import * from PyQt5.QtWidgets import * -from electroncash import Wallet, WalletStorage -from electroncash.util import UserCancelled, InvalidPassword, finalization_print_error -from electroncash.base_wizard import BaseWizard -from electroncash.i18n import _ +from vilight import Wallet, WalletStorage +from vilight.util import UserCancelled, InvalidPassword, finalization_print_error +from vilight.base_wizard import BaseWizard +from vilight.i18n import _ from .seed_dialog import SeedLayout, KeysLayout from .network_dialog import NetworkChoiceLayout diff --git a/gui/qt/invoice_list.py b/gui/qt/invoice_list.py index 114131f39..a7ed6c9b7 100644 --- a/gui/qt/invoice_list.py +++ b/gui/qt/invoice_list.py @@ -25,8 +25,8 @@ from .util import * -from electroncash.i18n import _ -from electroncash.util import format_time, FileImportFailed +from vilight.i18n import _ +from vilight.util import format_time, FileImportFailed class InvoiceList(MyTreeWidget): diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index e9729bf42..34a37cbb8 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -37,28 +37,28 @@ from PyQt5.QtCore import * from PyQt5.QtWidgets import * -from electroncash import keystore, get_config -from electroncash.address import Address, ScriptOutput -from electroncash.bitcoin import COIN, TYPE_ADDRESS, TYPE_SCRIPT, MIN_AMOUNT -from electroncash import networks -from electroncash.plugins import run_hook -from electroncash.i18n import _, ngettext -from electroncash.util import (format_time, format_satoshis, PrintError, +from vilight import keystore, get_config +from vilight.address import Address, ScriptOutput +from vilight.bitcoin import COIN, TYPE_ADDRESS, TYPE_SCRIPT, MIN_AMOUNT +from vilight import networks +from vilight.plugins import run_hook +from vilight.i18n import _, ngettext +from vilight.util import (format_time, format_satoshis, PrintError, format_satoshis_plain, NotEnoughFunds, ExcessiveFee, UserCancelled, InvalidPassword, bh2u, bfh, format_fee_satoshis, Weak, print_error) -import electroncash.web as web -from electroncash import Transaction -from electroncash import util, bitcoin, commands, cashacct -from electroncash import paymentrequest -from electroncash.wallet import Multisig_Wallet, sweep_preparations -from electroncash.contacts import Contact +import vilight.web as web +from vilight import Transaction +from vilight import util, bitcoin, commands, cashacct +from vilight import paymentrequest +from vilight.wallet import Multisig_Wallet, sweep_preparations +from vilight.contacts import Contact try: - from electroncash.plot import plot_history + from vilight.plot import plot_history except: plot_history = None -import electroncash.web as web +import vilight.web as web from .amountedit import AmountEdit, BTCAmountEdit, MyLineEdit, BTCkBEdit, BTCSatsByteEdit from .qrcodewidget import QRCodeWidget, QRDialog @@ -89,7 +89,7 @@ def keyPressEvent(self, e): self.func() -from electroncash.paymentrequest import PR_PAID +from vilight.paymentrequest import PR_PAID class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): @@ -471,7 +471,7 @@ def _is_invalid_testnet_wallet(self): xkey = ((hasattr(self.wallet, 'get_master_public_key') and self.wallet.get_master_public_key()) or None) if xkey: - from electroncash.bitcoin import deserialize_xpub, InvalidXKeyFormat + from vilight.bitcoin import deserialize_xpub, InvalidXKeyFormat try: xp = deserialize_xpub(xkey) except InvalidXKeyFormat: @@ -673,7 +673,7 @@ def add_toggle_action(view_menu, tab): help_menu.addAction(_("&Check for updates..."), lambda: self.gui_object.show_update_checker(self)) help_menu.addAction(_("&Official website"), lambda: webopen("https://vitae.cc")) help_menu.addSeparator() -# help_menu.addAction(_("Documentation"), lambda: webopen("http://electroncash.readthedocs.io/")).setShortcut(QKeySequence.HelpContents) +# help_menu.addAction(_("Documentation"), lambda: webopen("http://vilight.readthedocs.io/")).setShortcut(QKeySequence.HelpContents) help_menu.addAction(_("&Report Bug"), self.show_report_bug) help_menu.addSeparator() help_menu.addAction(_("&Donate to server"), self.donate_to_server) @@ -2998,7 +2998,7 @@ def password_dialog(self, msg=None, parent=None): return PasswordDialog(parent, msg).run() def tx_from_text(self, txt): - from electroncash.transaction import tx_from_str + from vilight.transaction import tx_from_str try: txt_tx = tx_from_str(txt) tx = Transaction(txt_tx, sign_schnorr=self.wallet.is_schnorr_enabled()) @@ -3032,7 +3032,7 @@ def read_tx_from_qrcode(self): return if self.gui_object.warn_if_cant_import_qrreader(self): return - from electroncash import get_config + from vilight import get_config from .qrreader import QrReaderCameraDialog data = '' self._qr_dialog = None @@ -3088,7 +3088,7 @@ def read_tx_from_file(self, *, fileName = None): return tx def do_process_from_text(self): - from electroncash.transaction import SerializationError + from vilight.transaction import SerializationError text = text_dialog(self.top_level_window(), _('Input raw transaction'), _("Transaction:"), _("Load transaction")) if not text: return @@ -3100,7 +3100,7 @@ def do_process_from_text(self): self.show_critical(_("ViLight was unable to deserialize the transaction:") + "\n" + str(e)) def do_process_from_file(self, *, fileName = None): - from electroncash.transaction import SerializationError + from vilight.transaction import SerializationError try: tx = self.read_tx_from_file(fileName=fileName) if tx: @@ -3112,7 +3112,7 @@ def do_process_from_txid(self, *, txid=None, parent=None, tx_desc=None): parent = parent or self if self.gui_object.warn_if_no_network(parent): return - from electroncash import transaction + from vilight import transaction ok = txid is not None if not ok: txid, ok = QInputDialog.getText(parent, _('Lookup transaction'), _('Transaction ID') + ':') @@ -3645,7 +3645,7 @@ def settings_dialog(self): lang_help = _('Select which language is used in the GUI (after restart).') lang_label = HelpLabel(_('Language') + ':', lang_help) lang_combo = QComboBox() - from electroncash.i18n import languages, get_system_language_match, match_language + from vilight.i18n import languages, get_system_language_match, match_language language_names = [] language_keys = [] @@ -4417,7 +4417,7 @@ def on_rate(dyn, pos, fee_rate): self.show_transaction(new_tx) def is_wallet_cashshuffle_compatible(self): - from electroncash.wallet import ImportedWalletBase, Multisig_Wallet + from vilight.wallet import ImportedWalletBase, Multisig_Wallet if (self.wallet.is_watching_only() or self.wallet.is_hardware() or isinstance(self.wallet, (Multisig_Wallet, ImportedWalletBase))): @@ -4435,7 +4435,7 @@ def do_cash_shuffle_reminder(self): return if self.cleaned_up or not self.wallet or not self.is_wallet_cashshuffle_compatible(): return - from electroncash_plugins.shuffle.conf_keys import ConfKeys + from vilight_plugins.shuffle.conf_keys import ConfKeys p = self.cashshuffle_plugin_if_loaded() storage = self.wallet.storage cashshuffle_flag = storage.get(ConfKeys.PerWallet.ENABLED, False) diff --git a/gui/qt/network_dialog.py b/gui/qt/network_dialog.py index 707ba0ca6..b113aea21 100644 --- a/gui/qt/network_dialog.py +++ b/gui/qt/network_dialog.py @@ -30,10 +30,10 @@ from PyQt5.QtWidgets import * import PyQt5.QtCore as QtCore -from electroncash.i18n import _ -from electroncash import networks -from electroncash.util import print_error, Weak, PrintError -from electroncash.network import serialize_server, deserialize_server, get_eligible_servers +from vilight.i18n import _ +from vilight import networks +from vilight.util import print_error, Weak, PrintError +from vilight.network import serialize_server, deserialize_server, get_eligible_servers from .util import * @@ -320,8 +320,8 @@ def hideEvent(slf, e): self.autoconnect_cb.clicked.connect(self.update) msg = ' '.join([ - _("If auto-connect is enabled, Electron Cash will always use a server that is on the longest blockchain."), - _("If it is disabled, you have to choose a server you want to use. Electron Cash will warn you if your server is lagging.") + _("If auto-connect is enabled, ViLight will always use a server that is on the longest blockchain."), + _("If it is disabled, you have to choose a server you want to use. ViLight will warn you if your server is lagging.") ]) grid.addWidget(self.autoconnect_cb, 0, 0, 1, 3) grid.addWidget(HelpButton(msg), 0, 4) @@ -333,7 +333,7 @@ def hideEvent(slf, e): self.preferred_only_cb.clicked.connect(self.set_whitelisted_only) # re-set the config key and notify network.py msg = '\n\n'.join([ - _("If 'Connect only to preferred servers' is enabled, Electron Cash will only connect to servers marked as 'preferred' servers ({}).").format(ServerFlag.Symbol[ServerFlag.Preferred]), + _("If 'Connect only to preferred servers' is enabled, ViLight will only connect to servers marked as 'preferred' servers ({}).").format(ServerFlag.Symbol[ServerFlag.Preferred]), _("This feature was added in response to the potential for a malicious actor to deny service via launching many servers (aka a sybil attack)."), _("If unsure, most of the time it's safe to leave this option disabled. However leaving it enabled is safer (if a little bit discouraging to new server operators wanting to populate their servers).") ]) @@ -360,9 +360,9 @@ def hideEvent(slf, e): grid.addWidget(label, 6, 0, 1, 4) msg = ' '.join([ _("Preferred servers ({}) are servers you have designated as reliable and/or trustworthy.").format(ServerFlag.Symbol[ServerFlag.Preferred]), - _("Initially, the preferred list is the hard-coded list of known-good servers vetted by the Electron Cash developers."), + _("Initially, the preferred list is the hard-coded list of known-good servers vetted by the Vilight developers."), _("You can add or remove any server from this list and optionally elect to only connect to preferred servers."), - "\n\n"+_("Banned servers ({}) are servers deemed unreliable and/or untrustworthy, and so they will never be connected-to by Electron Cash.").format(ServerFlag.Symbol[ServerFlag.Banned]) + "\n\n"+_("Banned servers ({}) are servers deemed unreliable and/or untrustworthy, and so they will never be connected-to by Vilight. Vilight.").format(ServerFlag.Symbol[ServerFlag.Banned]) ]) grid.addWidget(HelpButton(msg), 6, 4) @@ -407,7 +407,7 @@ def hideEvent(slf, e): grid.addWidget(self.tor_cb, 1, 0, 1, 3) grid.addWidget(self.proxy_cb, 2, 0, 1, 3) - grid.addWidget(HelpButton(_('Proxy settings apply to all connections: with Electron Cash servers, but also with third-party services.')), 2, 4) + grid.addWidget(HelpButton(_('Proxy settings apply to all connections: with ViLight servers, but also with third-party services.')), 2, 4) grid.addWidget(self.proxy_mode, 4, 1) grid.addWidget(self.proxy_host, 4, 2) grid.addWidget(self.proxy_port, 4, 3) diff --git a/gui/qt/password_dialog.py b/gui/qt/password_dialog.py index 2a9d3be0f..146f292cc 100644 --- a/gui/qt/password_dialog.py +++ b/gui/qt/password_dialog.py @@ -30,9 +30,9 @@ from PyQt5.QtGui import QIcon from PyQt5.QtWidgets import QLineEdit, QVBoxLayout, QLabel, QGridLayout, QCheckBox -from electroncash.i18n import _ +from vilight.i18n import _ -from electroncash.plugins import run_hook +from vilight.plugins import run_hook from .util import WindowModalDialog, OkButton, Buttons, CancelButton diff --git a/gui/qt/paytoedit.py b/gui/qt/paytoedit.py index e4075f877..fced7ca41 100644 --- a/gui/qt/paytoedit.py +++ b/gui/qt/paytoedit.py @@ -31,11 +31,11 @@ import re import sys from decimal import Decimal as PyDecimal # Qt 5.12 also exports Decimal -from electroncash import bitcoin -from electroncash.address import Address, ScriptOutput -from electroncash import networks -from electroncash.util import PrintError -from electroncash.contacts import Contact +from vilight import bitcoin +from vilight.address import Address, ScriptOutput +from vilight import networks +from vilight.util import PrintError +from vilight.contacts import Contact from . import util from . import cashacctqt diff --git a/gui/qt/popup_widget.py b/gui/qt/popup_widget.py index 185d14510..5f099bb4e 100644 --- a/gui/qt/popup_widget.py +++ b/gui/qt/popup_widget.py @@ -308,7 +308,7 @@ def setPopupText(self, text): ### Helpers for EC integration from .util import destroyed_print_error -from electroncash.util import finalization_print_error +from vilight.util import finalization_print_error _extant_popups = dict() def ShowPopupLabel(text, target, timeout, name="Global", pointer_position=PopupWidget.RightSide, opacity=0.9, onClick=None, onRightClick=None, diff --git a/gui/qt/qrcodewidget.py b/gui/qt/qrcodewidget.py index ac03e80b0..a91233f26 100644 --- a/gui/qt/qrcodewidget.py +++ b/gui/qt/qrcodewidget.py @@ -9,8 +9,8 @@ import os import qrcode -from electroncash import util -from electroncash.i18n import _ +from vilight import util +from vilight.i18n import _ from .util import WindowModalDialog, MessageBoxMixin diff --git a/gui/qt/qrreader/__init__.py b/gui/qt/qrreader/__init__.py index 2fbdf34f6..711731b00 100644 --- a/gui/qt/qrreader/__init__.py +++ b/gui/qt/qrreader/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/gui/qt/qrreader/camera_dialog.py b/gui/qt/qrreader/camera_dialog.py index d31aced57..c42de1e92 100644 --- a/gui/qt/qrreader/camera_dialog.py +++ b/gui/qt/qrreader/camera_dialog.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person @@ -34,12 +34,12 @@ from PyQt5.QtGui import QImage, QPixmap from PyQt5.QtCore import QSize, QRect, Qt, pyqtSignal, PYQT_VERSION -from electroncash import get_config -from electroncash.i18n import _ -from electroncash.util import print_error, PrintError -from electroncash.qrreaders import get_qr_reader, QrCodeResult +from vilight import get_config +from vilight.i18n import _ +from vilight.util import print_error, PrintError +from vilight.qrreaders import get_qr_reader, QrCodeResult -from electroncash_gui.qt.utils import FixedAspectRatioLayout, ImageGraphicsEffect +from vilight_gui.qt.utils import FixedAspectRatioLayout, ImageGraphicsEffect from .video_widget import QrReaderVideoWidget from .video_overlay import QrReaderVideoOverlay diff --git a/gui/qt/qrreader/crop_blur_effect.py b/gui/qt/qrreader/crop_blur_effect.py index b6adf9fc8..d19cd8814 100644 --- a/gui/qt/qrreader/crop_blur_effect.py +++ b/gui/qt/qrreader/crop_blur_effect.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/gui/qt/qrreader/validator.py b/gui/qt/qrreader/validator.py index 5ae8d24b0..7bd57284e 100644 --- a/gui/qt/qrreader/validator.py +++ b/gui/qt/qrreader/validator.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person @@ -29,11 +29,11 @@ from PyQt5.QtGui import QColor from PyQt5.QtCore import Qt -from electroncash.i18n import _ -from electroncash.qrreaders import QrCodeResult +from vilight.i18n import _ +from vilight.qrreaders import QrCodeResult -from electroncash_gui.qt.utils import QColorLerp -from electroncash_gui.qt.util import ColorScheme +from vilight_gui.qt.utils import QColorLerp +from vilight_gui.qt.util import ColorScheme class QrReaderValidatorResult(): """ diff --git a/gui/qt/qrreader/video_overlay.py b/gui/qt/qrreader/video_overlay.py index d345d4b80..e1453b0be 100644 --- a/gui/qt/qrreader/video_overlay.py +++ b/gui/qt/qrreader/video_overlay.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person @@ -30,7 +30,7 @@ from PyQt5.QtCore import QPoint, QSize, QRect, QRectF, Qt from PyQt5.QtSvg import QSvgRenderer -from electroncash.qrreaders import QrCodeResult +from vilight.qrreaders import QrCodeResult from .validator import QrReaderValidatorResult diff --git a/gui/qt/qrreader/video_surface.py b/gui/qt/qrreader/video_surface.py index 42b156858..825ff83c6 100644 --- a/gui/qt/qrreader/video_surface.py +++ b/gui/qt/qrreader/video_surface.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person @@ -30,8 +30,8 @@ from PyQt5.QtGui import QImage from PyQt5.QtCore import QObject, pyqtSignal -from electroncash.i18n import _ -from electroncash.util import print_error +from vilight.i18n import _ +from vilight.util import print_error class QrReaderVideoSurface(QAbstractVideoSurface): """ diff --git a/gui/qt/qrreader/video_widget.py b/gui/qt/qrreader/video_widget.py index c3fd41975..11bfc7dac 100644 --- a/gui/qt/qrreader/video_widget.py +++ b/gui/qt/qrreader/video_widget.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/gui/qt/qrtextedit.py b/gui/qt/qrtextedit.py index 2635bab90..7d2dc8de7 100644 --- a/gui/qt/qrtextedit.py +++ b/gui/qt/qrtextedit.py @@ -1,7 +1,7 @@ -from electroncash.i18n import _ -from electroncash.plugins import run_hook -from electroncash import util +from vilight.i18n import _ +from vilight.plugins import run_hook +from vilight import util from PyQt5.QtGui import * from PyQt5.QtCore import * from PyQt5.QtWidgets import QFileDialog @@ -52,7 +52,7 @@ def file_input(self): image = QImage() if image.load(fileName): - from electroncash.qrreaders import get_qr_reader + from vilight.qrreaders import get_qr_reader qr_reader = get_qr_reader() if not qr_reader: self.show_error(_("Unable to scan image file.") + "\n" + @@ -101,7 +101,7 @@ def qr_input(self, callback = None): from . import ElectrumGui if ElectrumGui.instance.warn_if_cant_import_qrreader(self): return - from electroncash import get_config + from vilight import get_config from .qrreader import QrReaderCameraDialog try: self.qr_dialog = QrReaderCameraDialog(parent=self.top_level_window()) diff --git a/gui/qt/qrwindow.py b/gui/qt/qrwindow.py index f078dd1d6..9515c26e3 100644 --- a/gui/qt/qrwindow.py +++ b/gui/qt/qrwindow.py @@ -27,10 +27,10 @@ from PyQt5.QtWidgets import QHBoxLayout, QVBoxLayout, QWidget, QDialog, QPushButton, QSizePolicy -from electroncash_gui.qt.qrcodewidget import QRCodeWidget, save_to_file, copy_to_clipboard +from vilight_gui.qt.qrcodewidget import QRCodeWidget, save_to_file, copy_to_clipboard from .util import WWLabel, Buttons, MessageBoxMixin -from electroncash.i18n import _ -from electroncash.util import Weak +from vilight.i18n import _ +from vilight.util import Weak class QR_Window(QWidget, MessageBoxMixin): diff --git a/gui/qt/request_list.py b/gui/qt/request_list.py index 97ad575ec..b1d01c872 100644 --- a/gui/qt/request_list.py +++ b/gui/qt/request_list.py @@ -23,11 +23,11 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -from electroncash.address import Address -from electroncash.i18n import _ -from electroncash.util import format_time, age -from electroncash.plugins import run_hook -from electroncash.paymentrequest import PR_UNKNOWN +from vilight.address import Address +from vilight.i18n import _ +from vilight.util import format_time, age +from vilight.plugins import run_hook +from vilight.paymentrequest import PR_UNKNOWN from PyQt5.QtGui import * from PyQt5.QtCore import * from PyQt5.QtWidgets import QTreeWidgetItem, QMenu diff --git a/gui/qt/scan_beyond_gap.py b/gui/qt/scan_beyond_gap.py index 51d1b6b63..29014a56a 100644 --- a/gui/qt/scan_beyond_gap.py +++ b/gui/qt/scan_beyond_gap.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Electron Cash - lightweight Bitcoin Cash client +# Vilight - lightweight Vitae client # Copyright (C) 2019 calin.culianu@gmail.com # # Permission is hereby granted, free of charge, to any person @@ -28,8 +28,8 @@ from PyQt5.QtWidgets import * from .util import * -from electroncash.util import PrintError, ServerError -from electroncash.i18n import _ +from vilight.util import PrintError, ServerError +from vilight.i18n import _ class ScanBeyondGap(WindowModalDialog, PrintError): progress_sig = pyqtSignal(int, int, int, int) diff --git a/gui/qt/seed_dialog.py b/gui/qt/seed_dialog.py index a3d287b23..f0eaeeb18 100644 --- a/gui/qt/seed_dialog.py +++ b/gui/qt/seed_dialog.py @@ -26,7 +26,7 @@ from PyQt5.QtGui import * from PyQt5.QtCore import * from PyQt5.QtWidgets import * -from electroncash.i18n import _ +from vilight.i18n import _ from .util import * from .qrtextedit import ShowQRTextEdit, ScanQRTextEdit @@ -169,14 +169,14 @@ def get_seed(self): return ' '.join(text.split()) def on_edit(self): - from electroncash.bitcoin import seed_type + from vilight.bitcoin import seed_type s = self.get_seed() b = self.is_seed(s) if not self.is_bip39: t = seed_type(s) label = _('Seed Type') + ': ' + t if t else '' else: - from electroncash.keystore import bip39_is_checksum_valid + from vilight.keystore import bip39_is_checksum_valid is_checksum, is_wordlist = bip39_is_checksum_valid(s) status = ('checksum: ' + ('ok' if is_checksum else 'failed')) if is_wordlist else 'unknown wordlist' label = 'BIP39' + ' (%s)'%status diff --git a/gui/qt/style_patcher.py b/gui/qt/style_patcher.py index af052b64c..daa46b04e 100644 --- a/gui/qt/style_patcher.py +++ b/gui/qt/style_patcher.py @@ -4,7 +4,7 @@ """ from PyQt5 import QtWidgets -from electroncash.util import print_error +from vilight.util import print_error def patch(dark: bool = False, darkstyle_ver: tuple = None): if not dark: diff --git a/gui/qt/transaction_dialog.py b/gui/qt/transaction_dialog.py index d0167d361..05102ec29 100644 --- a/gui/qt/transaction_dialog.py +++ b/gui/qt/transaction_dialog.py @@ -32,14 +32,14 @@ from PyQt5.QtGui import * from PyQt5.QtWidgets import * -from electroncash.address import Address, PublicKey, ScriptOutput -from electroncash.bitcoin import base_encode -from electroncash.i18n import _, ngettext -from electroncash.plugins import run_hook -from electroncash import web -from electroncash import cashacct - -from electroncash.util import bfh, Weak, PrintError +from vilight.address import Address, PublicKey, ScriptOutput +from vilight.bitcoin import base_encode +from vilight.i18n import _, ngettext +from vilight.plugins import run_hook +from vilight import web +from vilight import cashacct + +from vilight.util import bfh, Weak, PrintError from .util import * dialogs = [] # Otherwise python randomly garbage collects the dialogs... diff --git a/gui/qt/udev_installer.py b/gui/qt/udev_installer.py index c35280116..34a7338fc 100644 --- a/gui/qt/udev_installer.py +++ b/gui/qt/udev_installer.py @@ -1,4 +1,4 @@ -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person @@ -33,9 +33,9 @@ from PyQt5.QtGui import QFont from PyQt5.QtWidgets import QDialog, QVBoxLayout, QLabel, QHBoxLayout, QPushButton, QMessageBox, QFrame, QWidget -from electroncash.util import _, PrintError -from electroncash.plugins import Plugins -from electroncash_gui.qt import WindowModalDialog +from vilight.util import _, PrintError +from vilight.plugins import Plugins +from vilight_gui.qt import WindowModalDialog class InstallHardwareWalletSupportDialog(PrintError, WindowModalDialog): UDEV_RULES_FILE='/etc/udev/rules.d/20-vilight-hw-wallets.rules' diff --git a/gui/qt/update_checker.py b/gui/qt/update_checker.py index 048557bfb..eb7119767 100644 --- a/gui/qt/update_checker.py +++ b/gui/qt/update_checker.py @@ -29,10 +29,10 @@ from PyQt5.QtGui import * from PyQt5.QtWidgets import * -from electroncash.util import PrintError, print_error -from electroncash.i18n import _ -from electroncash import version, bitcoin, address -from electroncash.networks import MainNet +from vilight.util import PrintError, print_error +from vilight.i18n import _ +from vilight import version, bitcoin, address +from vilight.networks import MainNet from .util import * import base64, sys, requests, threading, time diff --git a/gui/qt/util.py b/gui/qt/util.py index 1b8901d60..8153c20c4 100644 --- a/gui/qt/util.py +++ b/gui/qt/util.py @@ -9,10 +9,10 @@ from collections import namedtuple from functools import partial, wraps -from electroncash.i18n import _ -from electroncash.address import Address -from electroncash.util import print_error, PrintError, Weak, finalization_print_error -from electroncash.wallet import Abstract_Wallet +from vilight.i18n import _ +from vilight.address import Address +from vilight.util import print_error, PrintError, Weak, finalization_print_error +from vilight.wallet import Abstract_Wallet from PyQt5.QtGui import * from PyQt5.QtCore import * from PyQt5.QtWidgets import * @@ -27,7 +27,7 @@ dialogs = [] -from electroncash.paymentrequest import PR_UNPAID, PR_PAID, PR_EXPIRED +from vilight.paymentrequest import PR_UNPAID, PR_PAID, PR_EXPIRED pr_icons = { PR_UNPAID:":icons/unpaid.svg", diff --git a/gui/qt/utils/__init__.py b/gui/qt/utils/__init__.py index 5f5a08b28..a3245e766 100644 --- a/gui/qt/utils/__init__.py +++ b/gui/qt/utils/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/gui/qt/utils/aspect_layout.py b/gui/qt/utils/aspect_layout.py index c0c6d9d01..dac47d5eb 100644 --- a/gui/qt/utils/aspect_layout.py +++ b/gui/qt/utils/aspect_layout.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/gui/qt/utils/aspect_svg_widget.py b/gui/qt/utils/aspect_svg_widget.py index 0042e3ee1..6f8ebe8a3 100644 --- a/gui/qt/utils/aspect_svg_widget.py +++ b/gui/qt/utils/aspect_svg_widget.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/gui/qt/utils/color_utils.py b/gui/qt/utils/color_utils.py index 212b46dfa..20c18868b 100644 --- a/gui/qt/utils/color_utils.py +++ b/gui/qt/utils/color_utils.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/gui/qt/utils/image_effect.py b/gui/qt/utils/image_effect.py index 76692e623..bc8d71285 100644 --- a/gui/qt/utils/image_effect.py +++ b/gui/qt/utils/image_effect.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/gui/qt/utxo_list.py b/gui/qt/utxo_list.py index 16e226937..d5a99fb62 100644 --- a/gui/qt/utxo_list.py +++ b/gui/qt/utxo_list.py @@ -23,10 +23,10 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. from .util import * -from electroncash.i18n import _ -from electroncash.plugins import run_hook -from electroncash.address import Address -from electroncash import cashacct +from vilight.i18n import _ +from vilight.plugins import run_hook +from vilight.address import Address +from vilight import cashacct from collections import defaultdict from functools import wraps from enum import IntEnum diff --git a/gui/stdio.py b/gui/stdio.py index ef1b74535..beb3d6219 100644 --- a/gui/stdio.py +++ b/gui/stdio.py @@ -1,10 +1,10 @@ from decimal import Decimal as PyDecimal _ = lambda x:x #from i18n import _ -from electroncash import WalletStorage, Wallet -from electroncash.util import format_satoshis, set_verbosity -from electroncash.address import Address -from electroncash.bitcoin import COIN, TYPE_ADDRESS +from vilight import WalletStorage, Wallet +from vilight.util import format_satoshis, set_verbosity +from vilight.address import Address +from vilight.bitcoin import COIN, TYPE_ADDRESS import getpass, datetime # minimal fdisk like gui for console usage diff --git a/gui/text.py b/gui/text.py index 6cfbfa501..3bdb40c92 100644 --- a/gui/text.py +++ b/gui/text.py @@ -3,11 +3,11 @@ from decimal import Decimal as PyDecimal import getpass -import electroncash -from electroncash.address import Address -from electroncash.util import format_satoshis, set_verbosity -from electroncash.bitcoin import COIN, TYPE_ADDRESS -from electroncash import Wallet, WalletStorage +import vilight +from vilight.address import Address +from vilight.util import format_satoshis, set_verbosity +from vilight.bitcoin import COIN, TYPE_ADDRESS +from vilight import Wallet, WalletStorage _ = lambda x:x diff --git a/ios/ElectronCash/.gitignore b/ios/ElectronCash/.gitignore index 31e4f8d61..ed627a63c 100644 --- a/ios/ElectronCash/.gitignore +++ b/ios/ElectronCash/.gitignore @@ -1,2 +1,2 @@ -electroncash/ +vilight/ diff --git a/ios/ElectronCash/__main__.py b/ios/ElectronCash/__main__.py index 76e7463d2..32c78b04e 100644 --- a/ios/ElectronCash/__main__.py +++ b/ios/ElectronCash/__main__.py @@ -13,8 +13,8 @@ # The below line needs to be here becasue the iOS main.m evaluates this script and looks for a # Python class (that is bridged to ObjC) named "PythonAppDelegate", which gets the # 'applicationDidFinishLaunchingWithOptions' call, which is really where we start the app. -import electroncash_gui.ios_native.appdelegate -from electroncash_gui.ios_native.uikit_bindings import * +import vilight_gui.ios_native.appdelegate +from vilight_gui.ios_native.uikit_bindings import * import sys diff --git a/ios/ElectronCash/app.py b/ios/ElectronCash/app.py index 8b6141f4e..44506b83c 100644 --- a/ios/ElectronCash/app.py +++ b/ios/ElectronCash/app.py @@ -5,11 +5,11 @@ # MIT License # import os -from electroncash_gui.ios_native.monkeypatches import MonkeyPatches -from electroncash.util import set_verbosity -from electroncash_gui.ios_native import ElectrumGui -from electroncash_gui.ios_native.utils import call_later, get_user_dir, cleanup_tmp_dir, is_debug_build, NSLogSuppress, NSLog -from electroncash.simple_config import SimpleConfig +from vilight_gui.ios_native.monkeypatches import MonkeyPatches +from vilight.util import set_verbosity +from vilight_gui.ios_native import ElectrumGui +from vilight_gui.ios_native.utils import call_later, get_user_dir, cleanup_tmp_dir, is_debug_build, NSLogSuppress, NSLog +from vilight.simple_config import SimpleConfig # NB: This is called from appdelegate.py "application_didFinishLaunchingWithOptions_" def main(): @@ -42,7 +42,7 @@ def _printStats(config_options): def thrdfunc(config_options): # lazy init of SSL import ssl, sys - from electroncash import version + from vilight import version NSLog("ViLight lib version: %s (using server protocol: %s)", version.PACKAGE_VERSION, version.PROTOCOL_VERSION) NSLog("Python version: %s", ' '.join(sys.version.split('\n'))) NSLog("OpenSSL version: %s", ssl.OPENSSL_VERSION) diff --git a/ios/ElectronCash/electroncash_gui/ios_native/__init__.py b/ios/ElectronCash/electroncash_gui/ios_native/__init__.py index 369b4c6f1..d55134451 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/__init__.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/__init__.py @@ -26,5 +26,5 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -# ElectronCash libs expect this name to be here to auto-create the GUI, so expose it as such. +# Vilight libs expect this name to be here to auto-create the GUI, so expose it as such. from .gui import ElectrumGui diff --git a/ios/ElectronCash/electroncash_gui/ios_native/addrconv.py b/ios/ElectronCash/electroncash_gui/ios_native/addrconv.py index 9a2007ebc..6322fca06 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/addrconv.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/addrconv.py @@ -6,8 +6,8 @@ from . import utils from . import gui -from electroncash.i18n import _, language -from electroncash.address import Address +from vilight.i18n import _, language +from vilight.address import Address from .uikit_bindings import * from .custom_objc import * diff --git a/ios/ElectronCash/electroncash_gui/ios_native/addresses.py b/ios/ElectronCash/electroncash_gui/ios_native/addresses.py index b54df0704..8d0389a87 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/addresses.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/addresses.py @@ -9,11 +9,11 @@ from . import private_key_dialog from . import sign_decrypt_dialog from . import history -from electroncash import WalletStorage, Wallet -from electroncash.util import timestamp_to_datetime -import electroncash.exchange_rate -from electroncash.i18n import _, language -from electroncash.address import Address +from vilight import WalletStorage, Wallet +from vilight.util import timestamp_to_datetime +import vilight.exchange_rate +from vilight.i18n import _, language +from vilight.address import Address import time, html, sys, enum from collections import namedtuple diff --git a/ios/ElectronCash/electroncash_gui/ios_native/amountedit.py b/ios/ElectronCash/electroncash_gui/ios_native/amountedit.py index 5cca2c245..c1f3546fb 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/amountedit.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/amountedit.py @@ -4,14 +4,14 @@ # # MIT License # -from electroncash.i18n import _ +from vilight.i18n import _ from .custom_objc import * from .uikit_bindings import * from . import utils from . import gui from decimal import Decimal -from electroncash.util import format_satoshis_plain, format_satoshis +from vilight.util import format_satoshis_plain, format_satoshis def parent(): return gui.ElectrumGui.gui diff --git a/ios/ElectronCash/electroncash_gui/ios_native/coins.py b/ios/ElectronCash/electroncash_gui/ios_native/coins.py index 7db4d538a..d24b81827 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/coins.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/coins.py @@ -8,9 +8,9 @@ from . import gui from . import txdetail from . import addresses -from electroncash import WalletStorage, Wallet -from electroncash.util import timestamp_to_datetime -from electroncash.i18n import _, language +from vilight import WalletStorage, Wallet +from vilight.util import timestamp_to_datetime +from vilight.i18n import _, language import time from .uikit_bindings import * from .custom_objc import * diff --git a/ios/ElectronCash/electroncash_gui/ios_native/contacts.py b/ios/ElectronCash/electroncash_gui/ios_native/contacts.py index 73197cebb..638cc53c5 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/contacts.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/contacts.py @@ -6,11 +6,11 @@ # from . import utils from . import gui -from electroncash import WalletStorage, Wallet -from electroncash.util import timestamp_to_datetime -from electroncash.i18n import _, language -from electroncash.address import Address, PublicKey -from electroncash.contacts import Contact +from vilight import WalletStorage, Wallet +from vilight.util import timestamp_to_datetime +from vilight.i18n import _, language +from vilight.address import Address, PublicKey +from vilight.contacts import Contact from .uikit_bindings import * from .custom_objc import * from collections import namedtuple diff --git a/ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py b/ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py index c030cb9b5..44dc86da3 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/crashreporter.py @@ -6,12 +6,12 @@ from . import utils from . import gui -from electroncash.i18n import _ +from vilight.i18n import _ from .uikit_bindings import * from .custom_objc import * import json, traceback, requests, sys -from electroncash import PACKAGE_VERSION +from vilight import PACKAGE_VERSION issue_template = """ diff --git a/ios/ElectronCash/electroncash_gui/ios_native/feeslider.py b/ios/ElectronCash/electroncash_gui/ios_native/feeslider.py index efacdb64c..de1a088bf 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/feeslider.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/feeslider.py @@ -4,7 +4,7 @@ # # MIT License # -from electroncash.i18n import _ +from vilight.i18n import _ from .custom_objc import * from .uikit_bindings import * from . import utils @@ -70,7 +70,7 @@ def onMoved(self) -> None: @objc_method def getToolTip(self, pos : int, fee_rate : int) -> ObjCInstance: - from electroncash.util import fee_levels + from vilight.util import fee_levels pos = pos if pos is not None and pos >= 0 else int(self.value) fee_rate = fee_rate if fee_rate is not None and fee_rate >= 0 else int(self.feeRate) rate_str = parent().format_fee_rate(fee_rate) if fee_rate else _('unknown') diff --git a/ios/ElectronCash/electroncash_gui/ios_native/gui.py b/ios/ElectronCash/electroncash_gui/ios_native/gui.py index abb6ba21d..58e1c9d1b 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/gui.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/gui.py @@ -47,12 +47,12 @@ from . import newwallet # Do not remove -- needed to declare NewWalletVC to ObjC runtime (used by storyboard instantiation) from .custom_objc import * -from electroncash.i18n import _, set_language, languages -from electroncash.plugins import run_hook -from electroncash import WalletStorage, Wallet, Transaction -from electroncash.address import Address -from electroncash.util import UserCancelled, print_error, format_satoshis, format_satoshis_plain, PrintError, InvalidPassword, inv_base_units -import electroncash.web as web +from vilight.i18n import _, set_language, languages +from vilight.plugins import run_hook +from vilight import WalletStorage, Wallet, Transaction +from vilight.address import Address +from vilight.util import UserCancelled, print_error, format_satoshis, format_satoshis_plain, PrintError, InvalidPassword, inv_base_units +import vilight.web as web class WalletFileNotFound(Exception): pass @@ -151,7 +151,7 @@ def tabBarController_shouldSelectViewController_(self, vc) -> bool: return not ElectrumGui.gui.warn_user_if_no_wallet() -# Manages the GUI. Part of the ElectronCash API so you can't rename this class easily. +# Manages the GUI. Part of the Vilight API so you can't rename this class easily. class ElectrumGui(PrintError): gui = None @@ -159,7 +159,7 @@ class ElectrumGui(PrintError): def __init__(self, config): ElectrumGui.gui = self self.appName = 'Electron-Cash' - self.appDomain = 'com.c3-soft.ElectronCash' + self.appDomain = 'com.c3-soft.Vilight' self.set_language() # Signals mechanism for publishing data to interested components asynchronously -- see self.refresh_components() @@ -1141,7 +1141,7 @@ def payment_request_ok(self): key = self.wallet.invoices.add(pr) status = self.wallet.invoices.get_status(key) #self.invoice_list.update() - from electroncash.paymentrequest import PR_PAID + from vilight.paymentrequest import PR_PAID if status == PR_PAID: self.show_message("invoice already paid", onOk = lambda: self.do_clear_send()) return @@ -1467,7 +1467,7 @@ def stop_daemon(self): def start_daemon(self): if self.daemon_is_running(): return - import electroncash.daemon as ed + import vilight.daemon as ed try: # Force remove of lock file so the code below cuts to the chase and starts a new daemon without # uselessly trying to connect to one that doesn't exist anyway. @@ -1538,8 +1538,8 @@ def doDismiss(animated = True, compl = None) -> None: def DoIt_Seed_Or_Keystore() -> None: nonlocal waitDlg try: - from electroncash import keystore - from electroncash.wallet import Standard_Wallet + from vilight import keystore + from vilight.wallet import Standard_Wallet k = have_keystore @@ -1547,7 +1547,7 @@ def DoIt_Seed_Or_Keystore() -> None: k = keystore.from_seed(wallet_seed, seed_ext, False) has_xpub = isinstance(k, keystore.Xpub) if has_xpub: - from electroncash.bitcoin import xpub_type + from vilight.bitcoin import xpub_type t1 = xpub_type(k.xpub) if has_xpub and t1 not in ['standard']: def compl() -> None: onFailure(_('Wrong key type') + ": '%s'"%t1) @@ -1585,8 +1585,8 @@ def myCompl() -> None: def DoIt_Imported() -> None: nonlocal waitDlg try: - from electroncash import keystore - from electroncash.wallet import ImportedAddressWallet, ImportedPrivkeyWallet + from vilight import keystore + from vilight.wallet import ImportedAddressWallet, ImportedPrivkeyWallet path = os.path.join(wallets.WalletsMgr.wallets_dir(), wallet_name) storage = WalletStorage(path, manual_upgrades=True) @@ -2239,7 +2239,7 @@ def show_ext_txn(self, txn : str) -> bool: if isinstance(txn, bytes): txn = txn.decode('utf-8') print("Warning: show_ext_txn got bytes instead of a str for the txn.. this may be bad...") - from electroncash.transaction import tx_from_str, Transaction + from vilight.transaction import tx_from_str, Transaction from . import txdetail try: if not self.wallet: diff --git a/ios/ElectronCash/electroncash_gui/ios_native/history.py b/ios/ElectronCash/electroncash_gui/ios_native/history.py index bc836dda9..0e4bbb58c 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/history.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/history.py @@ -6,11 +6,11 @@ # from . import utils from . import gui -from electroncash import WalletStorage, Wallet -from electroncash.address import Address, PublicKey -from electroncash.util import timestamp_to_datetime, PrintError, profiler -from electroncash.i18n import _, language -from electroncash.transaction import Transaction +from vilight import WalletStorage, Wallet +from vilight.address import Address, PublicKey +from vilight.util import timestamp_to_datetime, PrintError, profiler +from vilight.i18n import _, language +from vilight.transaction import Transaction import time, math, sys, os from collections import namedtuple @@ -604,7 +604,7 @@ def tableView_didSelectRowAtIndexPath_(self, tv, indexPath): if tx is None: # I'm not sure why this would happen but we did get issue #810 where it happened to 1 user. # Perhaps a chain split led to an "old" history view on-screen. That's my theory, at least. -Calin - parent.show_error(_("The requested transaction has dropped out of the wallet history.\n\nIf this problem persists, please contact us at electroncash.org."), + parent.show_error(_("The requested transaction has dropped out of the wallet history.\n\nIf this problem persists, please contact us at https://www.vitaetoken.io/."), title = _("Transaction Not Found"), onOk = lambda: parent.refresh_components('history')) return diff --git a/ios/ElectronCash/electroncash_gui/ios_native/monkeypatches.py b/ios/ElectronCash/electroncash_gui/ios_native/monkeypatches.py index 7ec278c7b..69da3537d 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/monkeypatches.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/monkeypatches.py @@ -9,13 +9,13 @@ # MIT LICENSE # ''' - Monkey Patches -- mostly to modify electroncash.* package to suit our needs. + Monkey Patches -- mostly to modify vilight.* package to suit our needs. Don't hate me. (This was needed to keep the iOS stuff self-contained.) ''' from .uikit_bindings import * -from electroncash.util import (InvalidPassword, profiler) -import electroncash.bitcoin as ec_bitcoin -from electroncash_gui.ios_native.utils import NSLog +from vilight.util import (InvalidPassword, profiler) +import vilight.bitcoin as ec_bitcoin +from vilight_gui.ios_native.utils import NSLog import sys, ssl class MonkeyPatches: diff --git a/ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py b/ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py index 6ea612200..4ab45ead2 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/network_dialog.py @@ -31,12 +31,12 @@ from . import gui from .custom_objc import * -from electroncash.i18n import _ +from vilight.i18n import _ import socket from collections import namedtuple -from electroncash.network import serialize_server, deserialize_server +from vilight.network import serialize_server, deserialize_server TAG_HELP_STATUS = 112 TAG_HELP_SERVER = 122 diff --git a/ios/ElectronCash/electroncash_gui/ios_native/newwallet.py b/ios/ElectronCash/electroncash_gui/ios_native/newwallet.py index 83afb753c..8d895229b 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/newwallet.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/newwallet.py @@ -6,17 +6,17 @@ # from . import utils from . import gui -from electroncash.i18n import _, language -from electroncash.mnemonic import Mnemonic -from electroncash.old_mnemonic import words as old_words +from vilight.i18n import _, language +from vilight.mnemonic import Mnemonic +from vilight.old_mnemonic import words as old_words from typing import Any from .uikit_bindings import * from .custom_objc import * import sys from collections import namedtuple -import electroncash.bitcoin as bitcoin -import electroncash.keystore as keystore -from electroncash.address import Address, PublicKey +import vilight.bitcoin as bitcoin +import vilight.keystore as keystore +from vilight.address import Address, PublicKey if False: # this is here for translate i18n to pick up these strings diff --git a/ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py b/ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py index 4635f364e..0fabaa6cf 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/password_dialog.py @@ -32,8 +32,8 @@ from . import utils from .custom_objc import * -from electroncash.i18n import _ -from electroncash import WalletStorage, Wallet +from vilight.i18n import _ +from vilight import WalletStorage, Wallet def Create_PWChangeVC(msg : str, hasPW : bool, isEnc : bool, hasTouchId : bool, diff --git a/ios/ElectronCash/electroncash_gui/ios_native/prefs.py b/ios/ElectronCash/electroncash_gui/ios_native/prefs.py index 1cb62d622..61ef74160 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/prefs.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/prefs.py @@ -8,12 +8,12 @@ from . import gui from . import addrconv from . import amountedit -from electroncash.util import timestamp_to_datetime, base_units, base_unit_labels -from electroncash.i18n import _, language +from vilight.util import timestamp_to_datetime, base_units, base_unit_labels +from vilight.i18n import _, language import time import html from .uikit_bindings import * -import electroncash.web as web +import vilight.web as web SECTION_TITLES = [ 'Tools', 'Fees', 'Transactions', 'Appearance', 'Fiat', diff --git a/ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py b/ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py index cbb72526c..9acaf86e9 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/private_key_dialog.py @@ -6,11 +6,11 @@ # from . import utils from . import gui -from electroncash.i18n import _, language +from vilight.i18n import _, language from .uikit_bindings import * from .custom_objc import * from collections import namedtuple -from electroncash import bitcoin +from vilight import bitcoin def parent() -> object: return gui.ElectrumGui.gui diff --git a/ios/ElectronCash/electroncash_gui/ios_native/receive.py b/ios/ElectronCash/electroncash_gui/ios_native/receive.py index 7795330e2..8edc05a6e 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/receive.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/receive.py @@ -8,13 +8,13 @@ from . import gui from . import addresses from .amountedit import BTCAmountEdit, FiatAmountEdit, BTCkBEdit # Makes sure ObjC classes are imported into ObjC runtime -from electroncash import WalletStorage, Wallet -from electroncash.util import timestamp_to_datetime, format_time -from electroncash.i18n import _, language -from electroncash.address import Address, ScriptOutput -from electroncash.paymentrequest import PR_UNPAID, PR_EXPIRED, PR_UNKNOWN, PR_PAID -from electroncash import bitcoin -import electroncash.web as web +from vilight import WalletStorage, Wallet +from vilight.util import timestamp_to_datetime, format_time +from vilight.i18n import _, language +from vilight.address import Address, ScriptOutput +from vilight.paymentrequest import PR_UNPAID, PR_EXPIRED, PR_UNKNOWN, PR_PAID +from vilight import bitcoin +import vilight.web as web import sys, traceback, time from .uikit_bindings import * from .custom_objc import * diff --git a/ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py b/ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py index 613fcbbe2..a89a4a880 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/seed_dialog.py @@ -32,8 +32,8 @@ from . import utils from .custom_objc import * -from electroncash.i18n import _ -from electroncash import WalletStorage, Wallet +from vilight.i18n import _ +from vilight import WalletStorage, Wallet def Create_SeedDisplayVC(seed : str, passphrase : str) -> ObjCInstance: diff --git a/ios/ElectronCash/electroncash_gui/ios_native/send.py b/ios/ElectronCash/electroncash_gui/ios_native/send.py index 15eff3832..ba8e89e08 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/send.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/send.py @@ -9,19 +9,19 @@ from .history import HistoryEntry from . import txdetail from . import contacts -from electroncash import WalletStorage, Wallet -from electroncash.util import timestamp_to_datetime, NotEnoughFunds, ExcessiveFee -from electroncash.transaction import Transaction -from electroncash.i18n import _ +from vilight import WalletStorage, Wallet +from vilight.util import timestamp_to_datetime, NotEnoughFunds, ExcessiveFee +from vilight.transaction import Transaction +from vilight.i18n import _ from .custom_objc import * from .uikit_bindings import * -from electroncash import networks -from electroncash.address import Address, ScriptOutput -from electroncash.paymentrequest import PaymentRequest -from electroncash import bitcoin +from vilight import networks +from vilight.address import Address, ScriptOutput +from vilight.paymentrequest import PaymentRequest +from vilight import bitcoin from .feeslider import FeeSlider from .amountedit import BTCAmountEdit -from electroncash.plugins import run_hook +from vilight.plugins import run_hook import time, html, re, sys, traceback from decimal import Decimal diff --git a/ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py b/ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py index 71025ee50..b587d350b 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/sign_decrypt_dialog.py @@ -9,9 +9,9 @@ from . import utils from . import gui from . import addresses -from electroncash.i18n import _, language -from electroncash import bitcoin -from electroncash.address import Address +from vilight.i18n import _, language +from vilight import bitcoin +from vilight.address import Address import sys, traceback, base64 from collections import namedtuple diff --git a/ios/ElectronCash/electroncash_gui/ios_native/txdetail.py b/ios/ElectronCash/electroncash_gui/ios_native/txdetail.py index 75d7253bf..147ca7a48 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/txdetail.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/txdetail.py @@ -4,16 +4,16 @@ # # MIT License # -from electroncash.i18n import _, language +from vilight.i18n import _, language from . import utils from . import gui from .custom_objc import TxDetailBase, TxInputsOutputsTVCBase from .uikit_bindings import * from .history import HistoryEntry, StatusImages from . import addresses -from electroncash.transaction import Transaction -from electroncash.address import Address, PublicKey, ScriptOutput -from electroncash.util import timestamp_to_datetime +from vilight.transaction import Transaction +from vilight.address import Address, PublicKey, ScriptOutput +from vilight.util import timestamp_to_datetime import json, sys from . import coins from . import contacts diff --git a/ios/ElectronCash/electroncash_gui/ios_native/utils.py b/ios/ElectronCash/electroncash_gui/ios_native/utils.py index 0163fe6ae..7f8a2297c 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/utils.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/utils.py @@ -32,8 +32,8 @@ from .uikit_bindings import * from .custom_objc import * -from electroncash.i18n import _ -from electroncash.util import PrintError +from vilight.i18n import _ +from vilight.util import PrintError def is_2x_screen() -> bool: diff --git a/ios/ElectronCash/electroncash_gui/ios_native/wallets.py b/ios/ElectronCash/electroncash_gui/ios_native/wallets.py index 3d3c37dbf..15c3fc2fd 100644 --- a/ios/ElectronCash/electroncash_gui/ios_native/wallets.py +++ b/ios/ElectronCash/electroncash_gui/ios_native/wallets.py @@ -8,7 +8,7 @@ from . import gui from . import history from . import newwallet -from electroncash.i18n import _, language +from vilight.i18n import _, language from .uikit_bindings import * from .custom_objc import * diff --git a/ios/Resources/LaunchScreen.storyboard b/ios/Resources/LaunchScreen.storyboard index 5385dcbf2..66528e11b 100644 --- a/ios/Resources/LaunchScreen.storyboard +++ b/ios/Resources/LaunchScreen.storyboard @@ -18,7 +18,7 @@ - + @@ -50,6 +50,6 @@ - + diff --git a/ios/Resources/NewWallet.storyboard b/ios/Resources/NewWallet.storyboard index a7c61cf0a..88337dcc9 100644 --- a/ios/Resources/NewWallet.storyboard +++ b/ios/Resources/NewWallet.storyboard @@ -967,7 +967,7 @@ - + @@ -1603,7 +1603,7 @@ - + @@ -1709,7 +1709,7 @@ - + @@ -1812,9 +1812,9 @@ - - - + + + diff --git a/ios/Resources/Splash2.xib b/ios/Resources/Splash2.xib index 31eacab7b..7a1d4e147 100644 --- a/ios/Resources/Splash2.xib +++ b/ios/Resources/Splash2.xib @@ -21,7 +21,7 @@ - + @@ -65,6 +65,6 @@ - + diff --git a/ios/common.sh b/ios/common.sh index 1acd2a158..926576375 100644 --- a/ios/common.sh +++ b/ios/common.sh @@ -6,8 +6,8 @@ # # If you do want to rename the app, edit the 2 variables below, and also: # -# 1. Make sure to rename the code directory (currently ElectronCash/) in this folder to match compact_name! -# 2. Make sure overrides/ElectronCash gets renamed to exactly match compact_name! +# 1. Make sure to rename the code directory (currently Vilight/) in this folder to match compact_name! +# 2. Make sure overrides/Vilight gets renamed to exactly match compact_name! -compact_name="ElectronCash" +compact_name="Vilight" xcode_target="ViLight" diff --git a/ios/copy_back_changes.sh b/ios/copy_back_changes.sh index 9b705819e..932675a22 100755 --- a/ios/copy_back_changes.sh +++ b/ios/copy_back_changes.sh @@ -18,8 +18,8 @@ pushd . > /dev/null cd $projdir a=`find ${compact_name}/ -type f -depth 1 -name \*.py -print` -b=`find ${compact_name}/electroncash_gui -type f -name \*.py -print` -c=`find ${compact_name}/electroncash -type f -name \*.py -print` +b=`find ${compact_name}/vilight_gui -type f -name \*.py -print` +c=`find ${compact_name}/vilight -type f -name \*.py -print` popd > /dev/null pushd . > /dev/null diff --git a/ios/make_ios_project.sh b/ios/make_ios_project.sh index a181f338b..1d843e08f 100755 --- a/ios/make_ios_project.sh +++ b/ios/make_ios_project.sh @@ -49,12 +49,12 @@ if [ -d iOS ]; then rm -fr iOS fi -if [ -d ${compact_name}/electroncash ]; then - echo "Deleting old ${compact_name}/electroncash..." - rm -fr ${compact_name}/electroncash +if [ -d ${compact_name}/vilight ]; then + echo "Deleting old ${compact_name}/vilight..." + rm -fr ${compact_name}/vilight fi -echo "Pulling 'electroncash' libs into project from ../lib ..." +echo "Pulling 'vilight' libs into project from ../lib ..." if [ ! -d ../lib/locale ]; then (cd .. && contrib/make_locale && cd ios) if [ "$?" != 0 ]; then @@ -62,9 +62,9 @@ if [ ! -d ../lib/locale ]; then exit 1 fi fi -cp -fpR ../lib ${compact_name}/electroncash +cp -fpR ../lib ${compact_name}/vilight echo "Removing lib/tests..." -rm -fr ${compact_name}/electroncash/tests +rm -fr ${compact_name}/vilight/tests find ${compact_name} -name \*.pyc -exec rm -f {} \; echo "" @@ -243,13 +243,13 @@ fi echo "" echo "Copying google protobuf paymentrequests.proto to app lib dir..." echo "" -cp -fva ${compact_name}/electroncash/*.proto iOS/app/${compact_name}/electroncash +cp -fva ${compact_name}/vilight/*.proto iOS/app/${compact_name}/vilight if [ "$?" != "0" ]; then echo "** WARNING: Failed to copy google protobuf .proto file to app lib dir!" fi -# Clean up no-longer-needed electroncash/ dir that is outside of Xcode project -rm -fr ${compact_name}/electroncash/* +# Clean up no-longer-needed vilight/ dir that is outside of Xcode project +rm -fr ${compact_name}/vilight/* # Can add this back when it works uniformly without issues /usr/bin/env ruby update_project.rb diff --git a/ios/setup.py b/ios/setup.py index 430ee4313..1862f7671 100644 --- a/ios/setup.py +++ b/ios/setup.py @@ -19,7 +19,7 @@ raise RuntimeError("Unable to find xcode_target in ./common.sh") del name_match, formal_name_match, contents -version_py = './{}/electroncash/version.py'.format(compact_name) +version_py = './{}/vilight/version.py'.format(compact_name) with io.open(version_py, encoding='utf8') as version_file: version_match = re.search(r"^ *PACKAGE_VERSION *= *['\"]([^'\"]*)['\"]", version_file.read(), re.M) if version_match: diff --git a/ios/update_project.rb b/ios/update_project.rb index ae889f3ec..19aa93104 100755 --- a/ios/update_project.rb +++ b/ios/update_project.rb @@ -46,7 +46,7 @@ #Update plist file to be consistent -infoplist="iOS/ElectronCash/ElectronCash-Info.plist" +infoplist="iOS/Vilight/Vilight-Info.plist" result = Plist.parse_xml(infoplist) result['CFBundleIdentifier'] = bundle_id result.save_plist(infoplist) diff --git a/lib/address.py b/lib/address.py index e54f7dd47..94c4f1a6d 100644 --- a/lib/address.py +++ b/lib/address.py @@ -1,4 +1,4 @@ -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2017 The Electron Cash Developers # # Permission is hereby granted, free of charge, to any person diff --git a/lib/daemon.py b/lib/daemon.py index efd81f304..fa95e1366 100644 --- a/lib/daemon.py +++ b/lib/daemon.py @@ -320,6 +320,6 @@ def init_gui(self, config, plugins): # be used for an installer-generated shortcut. # os.environ['QT_OPENGL'] = str(config.get('qt_opengl')) - gui = __import__('electroncash_gui.' + gui_name, fromlist=['electroncash_gui']) + gui = __import__('vilight_gui.' + gui_name, fromlist=['vilight_gui']) self.gui = gui.ElectrumGui(config, self, plugins) self.gui.main() diff --git a/lib/networks.py b/lib/networks.py index 5331b6ca2..d06d1d1ee 100644 --- a/lib/networks.py +++ b/lib/networks.py @@ -1,4 +1,4 @@ -# Electron Cash - lightweight Bitcoin Cash client +# Vilight - lightweight Vitae client # Copyright (C) 2011 thomasv@gitorious # Copyright (C) 2017 Neil Booth # diff --git a/lib/plugins.py b/lib/plugins.py index 774fef91e..f08d39d55 100644 --- a/lib/plugins.py +++ b/lib/plugins.py @@ -71,11 +71,11 @@ class Plugins(DaemonThread): def __init__(self, config, gui_name): DaemonThread.__init__(self) try: - internal_plugins_namespace = __import__('electroncash_plugins') + internal_plugins_namespace = __import__('vilight_plugins') except ImportError: # Assume we're running within the source tree. find = imp.find_module('plugins') - internal_plugins_namespace = imp.load_module('electroncash_plugins', *find) + internal_plugins_namespace = imp.load_module('vilight_plugins', *find) self.internal_plugins_pkgpath = os.path.dirname(internal_plugins_namespace.__file__) self.config = config self.gui_name = gui_name @@ -169,7 +169,7 @@ def load_internal_plugin(self, name): if name in self.internal_plugins: return self.internal_plugins[name] - full_name = 'electroncash_plugins.' + name + '.' + self.gui_name + full_name = 'vilight_plugins.' + name + '.' + self.gui_name loader = pkgutil.find_loader(full_name) if not loader: raise RuntimeError("%s implementation for %s plugin not found" @@ -205,9 +205,9 @@ def load_external_plugin(self, name): self.print_error("unable to load zip plugin '%s' package '%s'" % (plugin_file_path, name), str(e)) return - sys.modules['electroncash_external_plugins.'+ name] = module + sys.modules['vilight_external_plugins.'+ name] = module - full_name = 'electroncash_external_plugins.' + name + '.' + self.gui_name + full_name = 'vilight_external_plugins.' + name + '.' + self.gui_name loader = pkgutil.find_loader(full_name) if not loader: raise RuntimeError("%s implementation for %s plugin not found" @@ -419,8 +419,8 @@ def install_external_plugin(self, plugin_original_path): def uninstall_external_plugin(self, name): self.disable_external_plugin(name) - if 'electroncash_external_plugins.'+ name in sys.modules: - del sys.modules['electroncash_external_plugins.'+ name] + if 'vilight_external_plugins.'+ name in sys.modules: + del sys.modules['vilight_external_plugins.'+ name] metadata = self.external_plugin_metadata[name] plugin_file_path = metadata["__file__"] diff --git a/lib/qrreaders/__init__.py b/lib/qrreaders/__init__.py index b16f271a7..d706a315a 100644 --- a/lib/qrreaders/__init__.py +++ b/lib/qrreaders/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/lib/qrreaders/abstract_base.py b/lib/qrreaders/abstract_base.py index 8fbf902e7..409160392 100644 --- a/lib/qrreaders/abstract_base.py +++ b/lib/qrreaders/abstract_base.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/lib/qrreaders/osxqrdetect.py b/lib/qrreaders/osxqrdetect.py index 9492c9fda..024bbc49c 100644 --- a/lib/qrreaders/osxqrdetect.py +++ b/lib/qrreaders/osxqrdetect.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin Cash client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Calin Culianu # # Permission is hereby granted, free of charge, to any person @@ -87,8 +87,8 @@ def __init__(self): self.ctx = None try: if not cls.LIB: - import electroncash - root_ec_dir = os.path.abspath(os.path.join(electroncash.__path__[0], '..')) + import vilight + root_ec_dir = os.path.abspath(os.path.join(vilight.__path__[0], '..')) lib_dir = os.path.join(root_ec_dir, "contrib", "osx", "OSXQRDetect", "build", "Release") cls.LIB = ctypes.cdll.LoadLibrary(os.path.join(lib_dir, self.LIBNAME)) cls._init_func_args() diff --git a/lib/qrreaders/zbar.py b/lib/qrreaders/zbar.py index a690f1c37..77b1b06b1 100644 --- a/lib/qrreaders/zbar.py +++ b/lib/qrreaders/zbar.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/lib/schnorr.py b/lib/schnorr.py index a2f8e1e03..75b1d192b 100644 --- a/lib/schnorr.py +++ b/lib/schnorr.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # -*- mode: python3 -*- # This file (c) 2019 Mark Lundeberg & Calin Culianu -# Part of the Electron Cash SPV Wallet +# Part of the Vilight SPV Wallet # License: MIT ''' Schnorr sign/verify uses Requries libsecp256k1 acceleration if available. diff --git a/lib/servers_testnet.json b/lib/servers_testnet.json index bc5c548d8..7ec6ad75f 100644 --- a/lib/servers_testnet.json +++ b/lib/servers_testnet.json @@ -1,5 +1,5 @@ { - "testx.exploredvt.com": { + "testx.vitaetoken.io": { "s": "51002", "t": "51001" }, diff --git a/lib/tests/test_schnorr.py b/lib/tests/test_schnorr.py index 51922d205..59fd2c368 100644 --- a/lib/tests/test_schnorr.py +++ b/lib/tests/test_schnorr.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # -*- mode: python3 -*- # This file (c) 2019 Mark Lundeberg & Calin Culianu -# Part of the Electron Cash SPV Wallet +# Part of the Vilight SPV Wallet # License: MIT import unittest from .. import schnorr diff --git a/lib/utils/unicode_tools.py b/lib/utils/unicode_tools.py index 0586011f2..6812db938 100644 --- a/lib/utils/unicode_tools.py +++ b/lib/utils/unicode_tools.py @@ -1,4 +1,4 @@ -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/lib/wallet.py b/lib/wallet.py index d22bc2e57..09f85f154 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -829,7 +829,7 @@ def get_addr_balance(self, address, exclude_frozen_coins=False): # # In light of that fact, a possible approach would be to invalidate # this entire cache when a new block arrives (this is what Electrum - # does). However, for Electron Cash with its focus on many addresses + # does). However, for Vilight with its focus on many addresses # for future privacy features such as integrated CashShuffle -- # being notified in the wallet and invalidating the *entire* cache # whenever a new block arrives (which is the exact time you do diff --git a/lib/web.py b/lib/web.py index 575f91ca8..b807d8a42 100644 --- a/lib/web.py +++ b/lib/web.py @@ -34,18 +34,18 @@ from .util import format_satoshis_plain, bh2u, print_error -DEFAULT_EXPLORER = "exploredvt.com" +DEFAULT_EXPLORER = "vitaetoken.io" mainnet_block_explorers = { - 'exploredvt.com': ('https://exploredvt.com/#/VITAE/mainnet', + 'vitaetoken.io': ('https://explore.vitaetoken.io', Address.FMT_CASHADDR, {'tx': 'tx', 'addr': 'address', 'block' : 'block'}), } -DEFAULT_EXPLORER_TESTNET = 'exploredvt.com' +DEFAULT_EXPLORER_TESTNET = 'vitaetoken.io' testnet_block_explorers = { - 'exploredvt.com' : ('https://exploredvt.com/#/VITAE/testnet', + 'vitaetoken.io' : ('https://explore.vitaetoken.io/testnet', Address.FMT_CASHADDR, {'tx': 'tx', 'addr': 'address', 'block' : 'block'}), } diff --git a/lib/winconsole.py b/lib/winconsole.py index bcad42edc..da0bf2ffe 100644 --- a/lib/winconsole.py +++ b/lib/winconsole.py @@ -1,4 +1,4 @@ -# Electron Cash - lightweight Bitcoin client +# Vilight - lightweight Vitae client # Copyright (C) 2019 Axel Gembe # # Permission is hereby granted, free of charge, to any person diff --git a/plugins/README.rst b/plugins/README.rst index 16d2f812d..6e75a39f1 100644 --- a/plugins/README.rst +++ b/plugins/README.rst @@ -11,7 +11,7 @@ a remote server (not an Electron Cash server), then it should be a plugin as well. If the feature you want to add introduces new dependencies in the code, then it should probably be a plugin. -There are two types of plugins supported by Electron Cash. The first is the +There are two types of plugins supported by Vilight. Vilight. The first is the internal plugin, currently offered under "Optional Features" in the Tools menu of the QT client. The second is the external plugin, which the user has to manually install, currently managed under "Installed Plugins" in the @@ -55,7 +55,7 @@ in order to have provable safety for potential users as a feature. Types of Plugin =============== -Optional features (internal plugins) are included with Electron Cash, and are +Optional features (internal plugins) are included with Vilight, and are available to all users of Electron Cash to enable and disable as they wish. They cannot be uninstalled, and no installation functionality is provided either. @@ -71,13 +71,13 @@ Internal Plugin Rules - We expect plugin developers to maintain their plugin code. However, once a plugin is merged in Electron Cash, we will have to maintain it - too, because changes in the Electron Cash code often require updates in + too, because changes in the Vilight code often require updates in the plugin code. Therefore, plugins have to be easy to maintain. If we believe that a plugin will create too much maintenance work in the future, it will be rejected. -- Plugins should be compatible with Electron Cash's conventions. If your - plugin does not fit with Electron Cash's architecture, or if we believe +- Plugins should be compatible with Vilight's conventions. If your + plugin does not fit with Vilight's architecture, or if we believe that it will create too much maintenance work, it will not be accepted. In particular, do not duplicate existing Electron Cash code in your plugin. @@ -94,7 +94,7 @@ External Plugins At this time, external plugins must be developed in the same way as an internal plugin. It might be that this can be done by placing a symbolic link to your plugin's Python package directory, in the ``plugins`` directory within the -clone of the Electron Cash source you are developing within. +clone of the Vilight source you are developing within. Please be sure that you test your plugin with the same recommended version of Python for the version of ViLight you intend to specify in your @@ -168,7 +168,7 @@ Example ``manifest.json`` The Easy Way ------------ -In the ``contrib`` directory of the Electron Cash source tree, you can find a script +In the ``contrib`` directory of the Vilight source tree, you can find a script named ``package_plugin.py``. Execute this script with the command-line ``py -3 package_plugin.py``. You must have ``PyQT5`` installed, which you will have if you are developing against a clone of the GIT repository. @@ -190,7 +190,7 @@ It is not possible to import Python extension modules (.pyd, .dll, .so, etc) from within a ``ziparchive`` "mounted zip archive". If you need to extract data from the archive, to make use of it, please contact -the Electron Cash developers to work out a standard way to do so, so that if +the Vilight developers to work out a standard way to do so, so that if a user uninstalls your plugin, the extracted data can also be removed. For this initial external plugin feature release, this level of functionality is not officially supported or recommended. diff --git a/plugins/audio_modem/__init__.py b/plugins/audio_modem/__init__.py index 4c776b1c9..9e55b7185 100644 --- a/plugins/audio_modem/__init__.py +++ b/plugins/audio_modem/__init__.py @@ -1,4 +1,4 @@ -from electroncash.i18n import _ +from vilight.i18n import _ fullname = _('Audio MODEM') description = _('Provides support for air-gapped transaction signing.') diff --git a/plugins/audio_modem/qt.py b/plugins/audio_modem/qt.py index 8973eae1e..164bad7eb 100644 --- a/plugins/audio_modem/qt.py +++ b/plugins/audio_modem/qt.py @@ -5,10 +5,10 @@ import sys import platform -from electroncash.plugins import BasePlugin, hook -from electroncash_gui.qt.util import WaitingDialog, EnterButton, WindowModalDialog -from electroncash.util import print_msg, print_error -from electroncash.i18n import _ +from vilight.plugins import BasePlugin, hook +from vilight_gui.qt.util import WaitingDialog, EnterButton, WindowModalDialog +from vilight.util import print_msg, print_error +from vilight.i18n import _ from PyQt5.QtGui import * from PyQt5.QtCore import * diff --git a/plugins/cosigner_pool/__init__.py b/plugins/cosigner_pool/__init__.py index 5895b93f5..d8d5a21f1 100644 --- a/plugins/cosigner_pool/__init__.py +++ b/plugins/cosigner_pool/__init__.py @@ -1,4 +1,4 @@ -from electroncash.i18n import _ +from vilight.i18n import _ fullname = _('Cosigner Pool') description = ' '.join([ _("This plugin facilitates the use of multi-signatures wallets."), diff --git a/plugins/cosigner_pool/qt.py b/plugins/cosigner_pool/qt.py index 05142a9f1..4f050ec56 100644 --- a/plugins/cosigner_pool/qt.py +++ b/plugins/cosigner_pool/qt.py @@ -3,7 +3,7 @@ # Electrum - lightweight Bitcoin client # Copyright (C) 2014 Thomas Voegtlin # -# Electron Cash - lightweight Bitcoin Cash client +# Vilight - lightweight Vitae client # Copyright (C) 2019 The Electron Cash Developers # # Permission is hereby granted, free of charge, to any person @@ -34,14 +34,14 @@ from PyQt5.QtCore import * from PyQt5.QtWidgets import * -from electroncash import bitcoin, util, keystore -from electroncash import transaction -from electroncash.plugins import BasePlugin, hook -from electroncash.i18n import _ -from electroncash.wallet import Multisig_Wallet -from electroncash.util import bh2u, bfh, Weak, InvalidPassword, print_error +from vilight import bitcoin, util, keystore +from vilight import transaction +from vilight.plugins import BasePlugin, hook +from vilight.i18n import _ +from vilight.wallet import Multisig_Wallet +from vilight.util import bh2u, bfh, Weak, InvalidPassword, print_error -from electroncash_gui.qt.transaction_dialog import show_transaction, TxDialog +from vilight_gui.qt.transaction_dialog import show_transaction, TxDialog # Workarounds to the fact that xmlrpc.client doesn't take a timeout= arg. class TimeoutTransport(Transport): @@ -280,7 +280,7 @@ def _find_window_and_state_for_wallet(self, wallet): return None, None def cosigner_can_sign(self, tx, cosigner_xpub): - from electroncash.keystore import is_xpubkey, parse_xpubkey + from vilight.keystore import is_xpubkey, parse_xpubkey xpub_set = set([]) for txin in tx.inputs(): for x_pubkey in txin['x_pubkeys']: diff --git a/plugins/digitalbitbox/__init__.py b/plugins/digitalbitbox/__init__.py index 4bbde0e63..60ca00282 100644 --- a/plugins/digitalbitbox/__init__.py +++ b/plugins/digitalbitbox/__init__.py @@ -1,4 +1,4 @@ -from electroncash.i18n import _ +from vilight.i18n import _ fullname = 'Digital Bitbox' description = _('Provides support for Digital Bitbox hardware wallet') diff --git a/plugins/digitalbitbox/cmdline.py b/plugins/digitalbitbox/cmdline.py index 2cfced218..b4a77210d 100644 --- a/plugins/digitalbitbox/cmdline.py +++ b/plugins/digitalbitbox/cmdline.py @@ -1,4 +1,4 @@ -from electroncash.plugins import hook +from vilight.plugins import hook from .digitalbitbox import DigitalBitboxPlugin from ..hw_wallet import CmdLineHandler diff --git a/plugins/digitalbitbox/digitalbitbox.py b/plugins/digitalbitbox/digitalbitbox.py index 28e5573e9..7094eb57d 100644 --- a/plugins/digitalbitbox/digitalbitbox.py +++ b/plugins/digitalbitbox/digitalbitbox.py @@ -4,13 +4,13 @@ # try: - from electroncash.bitcoin import TYPE_ADDRESS, push_script, var_int, msg_magic, Hash, verify_message, pubkey_from_signature, point_to_ser, public_key_to_p2pkh, EncodeAES_base64, MyVerifyingKey, int_to_hex, hmac_oneshot, EncodeAES_bytes, DecodeAES_bytes - from electroncash.bitcoin import serialize_xpub, deserialize_xpub - from electroncash.transaction import Transaction - from electroncash.i18n import _ - from electroncash.keystore import Hardware_KeyStore + from vilight.bitcoin import TYPE_ADDRESS, push_script, var_int, msg_magic, Hash, verify_message, pubkey_from_signature, point_to_ser, public_key_to_p2pkh, EncodeAES_base64, MyVerifyingKey, int_to_hex, hmac_oneshot, EncodeAES_bytes, DecodeAES_bytes + from vilight.bitcoin import serialize_xpub, deserialize_xpub + from vilight.transaction import Transaction + from vilight.i18n import _ + from vilight.keystore import Hardware_KeyStore from ..hw_wallet import HW_PluginBase - from electroncash.util import print_error, to_string, UserCancelled + from vilight.util import print_error, to_string, UserCancelled import time import hid diff --git a/plugins/digitalbitbox/qt.py b/plugins/digitalbitbox/qt.py index b62f93472..2de633d94 100644 --- a/plugins/digitalbitbox/qt.py +++ b/plugins/digitalbitbox/qt.py @@ -1,9 +1,9 @@ from ..hw_wallet.qt import QtHandlerBase, QtPluginBase from .digitalbitbox import DigitalBitboxPlugin -from electroncash.i18n import _ -from electroncash.plugins import hook -from electroncash.wallet import Standard_Wallet +from vilight.i18n import _ +from vilight.plugins import hook +from vilight.wallet import Standard_Wallet class Plugin(DigitalBitboxPlugin, QtPluginBase): diff --git a/plugins/email_requests/__init__.py b/plugins/email_requests/__init__.py index 44d5a6705..56b24ec2a 100644 --- a/plugins/email_requests/__init__.py +++ b/plugins/email_requests/__init__.py @@ -1,4 +1,4 @@ -from electroncash.i18n import _ +from vilight.i18n import _ fullname = _('Email') description = _("Send and receive payment request with an email account") diff --git a/plugins/email_requests/qt.py b/plugins/email_requests/qt.py index 349a0b112..386a95bd6 100644 --- a/plugins/email_requests/qt.py +++ b/plugins/email_requests/qt.py @@ -39,12 +39,12 @@ from PyQt5.QtGui import * from PyQt5.QtWidgets import * -from electroncash.plugins import BasePlugin, hook -from electroncash.paymentrequest import PaymentRequest -from electroncash.i18n import _ -from electroncash_gui.qt.util import EnterButton, Buttons, CloseButton -from electroncash_gui.qt.util import OkButton, WindowModalDialog -from electroncash.util import Weak +from vilight.plugins import BasePlugin, hook +from vilight.paymentrequest import PaymentRequest +from vilight.i18n import _ +from vilight_gui.qt.util import EnterButton, Buttons, CloseButton +from vilight_gui.qt.util import OkButton, WindowModalDialog +from vilight.util import Weak class Processor(threading.Thread): @@ -146,7 +146,7 @@ def receive_list_menu(self, menu, addr): menu.addAction(_("Send via e-mail"), lambda: self.send(window, addr)) def send(self, window, addr): - from electroncash import paymentrequest + from vilight import paymentrequest r = window.wallet.receive_requests.get(addr) message = r.get('memo', '') if r.get('signature'): diff --git a/plugins/hw_wallet/cmdline.py b/plugins/hw_wallet/cmdline.py index 83c192921..1d553a5fc 100644 --- a/plugins/hw_wallet/cmdline.py +++ b/plugins/hw_wallet/cmdline.py @@ -1,4 +1,4 @@ -from electroncash.util import print_msg, print_error, raw_input +from vilight.util import print_msg, print_error, raw_input class CmdLineHandler: diff --git a/plugins/hw_wallet/plugin.py b/plugins/hw_wallet/plugin.py index 9643d6e7a..0096969a1 100644 --- a/plugins/hw_wallet/plugin.py +++ b/plugins/hw_wallet/plugin.py @@ -24,12 +24,12 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -from electroncash.plugins import BasePlugin, hook -from electroncash.i18n import _, ngettext -from electroncash import Transaction -from electroncash.bitcoin import TYPE_SCRIPT -from electroncash.util import bfh, finalization_print_error -from electroncash.address import OpCodes, Address, Script +from vilight.plugins import BasePlugin, hook +from vilight.i18n import _, ngettext +from vilight import Transaction +from vilight.bitcoin import TYPE_SCRIPT +from vilight.util import bfh, finalization_print_error +from vilight.address import OpCodes, Address, Script class HW_PluginBase(BasePlugin): # Derived classes provide: diff --git a/plugins/hw_wallet/qt.py b/plugins/hw_wallet/qt.py index 828a94f55..9083886a5 100644 --- a/plugins/hw_wallet/qt.py +++ b/plugins/hw_wallet/qt.py @@ -27,11 +27,11 @@ import threading from PyQt5.QtWidgets import QVBoxLayout, QLabel -from electroncash_gui.qt.password_dialog import PasswordDialog, PW_PASSPHRASE -from electroncash_gui.qt.util import * +from vilight_gui.qt.password_dialog import PasswordDialog, PW_PASSPHRASE +from vilight_gui.qt.util import * -from electroncash.i18n import _ -from electroncash.util import PrintError +from vilight.i18n import _ +from vilight.util import PrintError # The trickiest thing about this handler was getting windows properly # parented on MacOSX. @@ -183,9 +183,9 @@ def win_yes_no_question(self, msg): -from electroncash.plugins import hook -from electroncash.util import UserCancelled -from electroncash_gui.qt.main_window import StatusBarButton +from vilight.plugins import hook +from vilight.util import UserCancelled +from vilight_gui.qt.main_window import StatusBarButton class QtPluginBase(object): diff --git a/plugins/keepkey/__init__.py b/plugins/keepkey/__init__.py index cabad863c..4f6733a12 100644 --- a/plugins/keepkey/__init__.py +++ b/plugins/keepkey/__init__.py @@ -1,4 +1,4 @@ -from electroncash.i18n import _ +from vilight.i18n import _ fullname = 'KeepKey' description = _('Provides support for KeepKey hardware wallet') diff --git a/plugins/keepkey/clientbase.py b/plugins/keepkey/clientbase.py index 0f0580806..1bd7ee0e0 100644 --- a/plugins/keepkey/clientbase.py +++ b/plugins/keepkey/clientbase.py @@ -1,10 +1,10 @@ import time from struct import pack -from electroncash.i18n import _ -from electroncash.util import PrintError, UserCancelled -from electroncash.keystore import bip39_normalize_passphrase -from electroncash.bitcoin import serialize_xpub +from vilight.i18n import _ +from vilight.util import PrintError, UserCancelled +from vilight.keystore import bip39_normalize_passphrase +from vilight.bitcoin import serialize_xpub class GuiMixin(object): diff --git a/plugins/keepkey/cmdline.py b/plugins/keepkey/cmdline.py index 7df15a9f3..646913489 100644 --- a/plugins/keepkey/cmdline.py +++ b/plugins/keepkey/cmdline.py @@ -1,4 +1,4 @@ -from electroncash.plugins import hook +from vilight.plugins import hook from .keepkey import KeepKeyPlugin from ..hw_wallet import CmdLineHandler diff --git a/plugins/keepkey/keepkey.py b/plugins/keepkey/keepkey.py index c8d2e1705..f3f9f8bea 100644 --- a/plugins/keepkey/keepkey.py +++ b/plugins/keepkey/keepkey.py @@ -2,14 +2,14 @@ import traceback import sys -from electroncash.util import bfh, bh2u, UserCancelled -from electroncash.bitcoin import TYPE_ADDRESS, TYPE_SCRIPT, deserialize_xpub -from electroncash import networks -from electroncash.i18n import _ -from electroncash.transaction import deserialize, Transaction -from electroncash.keystore import Hardware_KeyStore, is_xpubkey, parse_xpubkey -from electroncash.address import Address -from electroncash.plugins import Device +from vilight.util import bfh, bh2u, UserCancelled +from vilight.bitcoin import TYPE_ADDRESS, TYPE_SCRIPT, deserialize_xpub +from vilight import networks +from vilight.i18n import _ +from vilight.transaction import deserialize, Transaction +from vilight.keystore import Hardware_KeyStore, is_xpubkey, parse_xpubkey +from vilight.address import Address +from vilight.plugins import Device from ..hw_wallet import HW_PluginBase from ..hw_wallet.plugin import is_any_tx_output_on_change_branch, validate_op_return_output_and_get_data diff --git a/plugins/keepkey/qt.py b/plugins/keepkey/qt.py index 4606e8871..e283c7bce 100644 --- a/plugins/keepkey/qt.py +++ b/plugins/keepkey/qt.py @@ -9,11 +9,11 @@ QMessageBox, QFileDialog, QSlider, QTabWidget, QSizePolicy) -from electroncash_gui.qt.util import (WindowModalDialog, WWLabel, Buttons, CancelButton, +from vilight_gui.qt.util import (WindowModalDialog, WWLabel, Buttons, CancelButton, OkButton, CloseButton) -from electroncash.util import _, bh2u -from electroncash.plugins import hook +from vilight.util import _, bh2u +from vilight.plugins import hook from ..hw_wallet.qt import QtHandlerBase, QtPluginBase from ..hw_wallet.plugin import only_hook_if_libraries_available @@ -257,7 +257,7 @@ def clean_text(widget): else: msg = _("Enter the master private key beginning with xprv:") def set_enabled(): - from electroncash.bitcoin import is_xprv + from vilight.bitcoin import is_xprv wizard.next_button.setEnabled(is_xprv(clean_text(text))) text.textChanged.connect(set_enabled) next_enabled = False diff --git a/plugins/labels/__init__.py b/plugins/labels/__init__.py index 6a5df1511..76987310b 100644 --- a/plugins/labels/__init__.py +++ b/plugins/labels/__init__.py @@ -1,4 +1,4 @@ -from electroncash.i18n import _ +from vilight.i18n import _ fullname = _('LabelSync') description = ' '.join([ diff --git a/plugins/labels/labels.py b/plugins/labels/labels.py index 2257c6925..a7cd4ee8b 100644 --- a/plugins/labels/labels.py +++ b/plugins/labels/labels.py @@ -7,9 +7,9 @@ import base64 -from electroncash.bitcoin import aes_decrypt_with_iv, aes_encrypt_with_iv -from electroncash.plugins import BasePlugin, hook -from electroncash.i18n import _ +from vilight.bitcoin import aes_decrypt_with_iv, aes_encrypt_with_iv +from vilight.plugins import BasePlugin, hook +from vilight.i18n import _ class LabelsPlugin(BasePlugin): diff --git a/plugins/labels/qt.py b/plugins/labels/qt.py index b94bc72ca..b155aebe1 100644 --- a/plugins/labels/qt.py +++ b/plugins/labels/qt.py @@ -4,13 +4,13 @@ from PyQt5.QtCore import * from PyQt5.QtWidgets import (QHBoxLayout, QLabel, QVBoxLayout) -from electroncash.plugins import hook -from electroncash.i18n import _ -from electroncash_gui.qt import EnterButton -from electroncash_gui.qt.main_window import ElectrumWindow -from electroncash_gui.qt.util import ThreadedButton, Buttons -from electroncash_gui.qt.util import WindowModalDialog, OkButton, WaitingDialog -from electroncash.util import Weak +from vilight.plugins import hook +from vilight.i18n import _ +from vilight_gui.qt import EnterButton +from vilight_gui.qt.main_window import ElectrumWindow +from vilight_gui.qt.util import ThreadedButton, Buttons +from vilight_gui.qt.util import WindowModalDialog, OkButton, WaitingDialog +from vilight.util import Weak from .labels import LabelsPlugin diff --git a/plugins/ledger/README.md b/plugins/ledger/README.md index ffc007285..491186f29 100644 --- a/plugins/ledger/README.md +++ b/plugins/ledger/README.md @@ -36,10 +36,10 @@ PLEASE NOTE: Ensure that you do not have another application (like Electrum, Bit The latest Nano S firmware was released on March 2017 (Secure Element 1.3.1) -It is strongly recommended to upgrade to the latest firmware. +It is strongly recommended to upgrade to the latest firmware. -To check which firmware version your Nano S is currently running, open the "Settings" application on your device and scroll until "Firmware" is displayed. -Press both buttons to enter the menu which displays your firmware version. +To check which firmware version your Nano S is currently running, open the "Settings" application on your device and scroll until "Firmware" is displayed. +Press both buttons to enter the menu which displays your firmware version. Firmware Update Guide: https://ledger.zendesk.com/hc/en-us/articles/115005165409-How-can-I-update-my-Nano-S- @@ -64,7 +64,7 @@ Install the Ledger Manager to download and install Bitcoin Cash application onto - If you want to use legacy Bitcoin addresses use m/44'/0'/0' - If you want to use Bitcoin Cash addresses use m/44'/145'/0' 6. ??? -7. PROFIT!!! (Your Bitcoin wallet should now open in Electron-Cash) +7. PROFIT!!! (Your Bitcoin wallet should now open in Vilight) --- @@ -72,5 +72,5 @@ Install the Ledger Manager to download and install Bitcoin Cash application onto 1. Uninstall and reinstall the Bitcoin Cash app on your Ledger device 2. Try a different USB cable -3. Try a different USB port +3. Try a different USB port 4. Try on another computer (see compatibility) diff --git a/plugins/ledger/__init__.py b/plugins/ledger/__init__.py index ba7cfefbf..b631bf131 100644 --- a/plugins/ledger/__init__.py +++ b/plugins/ledger/__init__.py @@ -1,4 +1,4 @@ -from electroncash.i18n import _ +from vilight.i18n import _ fullname = 'Ledger Wallet' description = 'Provides support for Ledger hardware wallet' diff --git a/plugins/ledger/auth2fa.py b/plugins/ledger/auth2fa.py index d7a8a5f0d..1f7aa3f1c 100644 --- a/plugins/ledger/auth2fa.py +++ b/plugins/ledger/auth2fa.py @@ -1,10 +1,10 @@ from PyQt5.QtWidgets import * -from electroncash.i18n import _ -from electroncash_gui.qt.util import * -from electroncash.util import print_error -from electroncash.address import Address -from electroncash import networks +from vilight.i18n import _ +from vilight_gui.qt.util import * +from vilight.util import print_error +from vilight.address import Address +from vilight import networks import copy diff --git a/plugins/ledger/cmdline.py b/plugins/ledger/cmdline.py index 6adecff9b..0ca5d4d31 100644 --- a/plugins/ledger/cmdline.py +++ b/plugins/ledger/cmdline.py @@ -1,4 +1,4 @@ -from electroncash.plugins import hook +from vilight.plugins import hook from .ledger import LedgerPlugin from ..hw_wallet import CmdLineHandler diff --git a/plugins/ledger/ledger.py b/plugins/ledger/ledger.py index 31df92a65..f53dde52b 100644 --- a/plugins/ledger/ledger.py +++ b/plugins/ledger/ledger.py @@ -4,16 +4,16 @@ import traceback import inspect -from electroncash import bitcoin -from electroncash.address import Address, OpCodes -from electroncash.bitcoin import TYPE_ADDRESS, TYPE_SCRIPT, int_to_hex, var_int -from electroncash.i18n import _ -from electroncash.plugins import BasePlugin -from electroncash.keystore import Hardware_KeyStore -from electroncash.transaction import Transaction +from vilight import bitcoin +from vilight.address import Address, OpCodes +from vilight.bitcoin import TYPE_ADDRESS, TYPE_SCRIPT, int_to_hex, var_int +from vilight.i18n import _ +from vilight.plugins import BasePlugin +from vilight.keystore import Hardware_KeyStore +from vilight.transaction import Transaction from ..hw_wallet import HW_PluginBase from ..hw_wallet.plugin import is_any_tx_output_on_change_branch, validate_op_return_output_and_get_data -from electroncash.util import print_error, is_verbose, bfh, bh2u, versiontuple +from vilight.util import print_error, is_verbose, bfh, bh2u, versiontuple try: import hid diff --git a/plugins/ledger/qt.py b/plugins/ledger/qt.py index 0d85b972e..7a4618960 100644 --- a/plugins/ledger/qt.py +++ b/plugins/ledger/qt.py @@ -2,12 +2,12 @@ from PyQt5.QtWidgets import QInputDialog, QLineEdit, QVBoxLayout, QLabel -from electroncash.i18n import _ -from electroncash.plugins import hook -from electroncash.wallet import Standard_Wallet +from vilight.i18n import _ +from vilight.plugins import hook +from vilight.wallet import Standard_Wallet from .ledger import LedgerPlugin from ..hw_wallet.qt import QtHandlerBase, QtPluginBase -from electroncash_gui.qt.util import * +from vilight_gui.qt.util import * #from btchip.btchipPersoWizard import StartBTChipPersoDialog diff --git a/plugins/trezor/__init__.py b/plugins/trezor/__init__.py index b1be5a584..141d6c5d5 100644 --- a/plugins/trezor/__init__.py +++ b/plugins/trezor/__init__.py @@ -1,4 +1,4 @@ -from electroncash.i18n import _ +from vilight.i18n import _ fullname = 'TREZOR Wallet' description = _('Provides support for TREZOR hardware wallet') diff --git a/plugins/trezor/clientbase.py b/plugins/trezor/clientbase.py index 550f9e809..f8fe7ac43 100644 --- a/plugins/trezor/clientbase.py +++ b/plugins/trezor/clientbase.py @@ -1,10 +1,10 @@ import time from struct import pack -from electroncash.i18n import _ -from electroncash.util import PrintError, UserCancelled -from electroncash.keystore import bip39_normalize_passphrase -from electroncash.bitcoin import serialize_xpub +from vilight.i18n import _ +from vilight.util import PrintError, UserCancelled +from vilight.keystore import bip39_normalize_passphrase +from vilight.bitcoin import serialize_xpub from trezorlib.client import TrezorClient from trezorlib.exceptions import TrezorFailure, Cancelled, OutdatedFirmwareError, TrezorException diff --git a/plugins/trezor/cmdline.py b/plugins/trezor/cmdline.py index 223ffddff..3f625c181 100644 --- a/plugins/trezor/cmdline.py +++ b/plugins/trezor/cmdline.py @@ -1,4 +1,4 @@ -from electroncash.plugins import hook +from vilight.plugins import hook from .trezor import TrezorPlugin from ..hw_wallet import CmdLineHandler diff --git a/plugins/trezor/qt.py b/plugins/trezor/qt.py index cfe5887be..bd26bb96e 100644 --- a/plugins/trezor/qt.py +++ b/plugins/trezor/qt.py @@ -7,11 +7,11 @@ from PyQt5.QtWidgets import QGridLayout, QInputDialog, QPushButton from PyQt5.QtWidgets import QVBoxLayout, QLabel -from electroncash_gui.qt.util import * -from electroncash.i18n import _ -from electroncash.plugins import hook, DeviceMgr -from electroncash.util import PrintError, UserCancelled, bh2u -from electroncash.wallet import Wallet, Standard_Wallet +from vilight_gui.qt.util import * +from vilight.i18n import _ +from vilight.plugins import hook, DeviceMgr +from vilight.util import PrintError, UserCancelled, bh2u +from vilight.wallet import Wallet, Standard_Wallet from ..hw_wallet.qt import QtHandlerBase, QtPluginBase from .trezor import (TrezorPlugin, TIM_NEW, TIM_RECOVER, diff --git a/plugins/trezor/trezor.py b/plugins/trezor/trezor.py index 27f26842d..cde69da18 100644 --- a/plugins/trezor/trezor.py +++ b/plugins/trezor/trezor.py @@ -3,15 +3,15 @@ import traceback import sys -from electroncash.util import bfh, bh2u, versiontuple, UserCancelled -from electroncash.bitcoin import (b58_address_to_hash160, xpub_from_pubkey, deserialize_xpub, +from vilight.util import bfh, bh2u, versiontuple, UserCancelled +from vilight.bitcoin import (b58_address_to_hash160, xpub_from_pubkey, deserialize_xpub, TYPE_ADDRESS, TYPE_SCRIPT) -from electroncash.i18n import _ -from electroncash.networks import NetworkConstants -from electroncash.plugins import BasePlugin, Device -from electroncash.transaction import deserialize -from electroncash.keystore import Hardware_KeyStore, is_xpubkey, parse_xpubkey -from electroncash.address import ScriptOutput +from vilight.i18n import _ +from vilight.networks import NetworkConstants +from vilight.plugins import BasePlugin, Device +from vilight.transaction import deserialize +from vilight.keystore import Hardware_KeyStore, is_xpubkey, parse_xpubkey +from vilight.address import ScriptOutput from ..hw_wallet import HW_PluginBase diff --git a/plugins/virtualkeyboard/__init__.py b/plugins/virtualkeyboard/__init__.py index f56dcd475..6fb21fed1 100644 --- a/plugins/virtualkeyboard/__init__.py +++ b/plugins/virtualkeyboard/__init__.py @@ -1,4 +1,4 @@ -from electroncash.i18n import _ +from vilight.i18n import _ fullname = 'Virtual Keyboard' description = '%s\n%s' % (_("Add an optional virtual keyboard to the password dialog."), _("Warning: do not use this if it makes you pick a weaker password.")) diff --git a/plugins/virtualkeyboard/qt.py b/plugins/virtualkeyboard/qt.py index 4743f68aa..7fb468742 100644 --- a/plugins/virtualkeyboard/qt.py +++ b/plugins/virtualkeyboard/qt.py @@ -1,8 +1,8 @@ from PyQt5.QtGui import * from PyQt5.QtWidgets import (QVBoxLayout, QGridLayout, QPushButton) -from electroncash.plugins import BasePlugin, hook -from electroncash.i18n import _ -from electroncash_gui.qt.util import MONOSPACE_FONT +from vilight.plugins import BasePlugin, hook +from vilight.i18n import _ +from vilight_gui.qt.util import MONOSPACE_FONT import random diff --git a/pubkeys/README.md b/pubkeys/README.md index e507b45f9..7588a08ff 100644 --- a/pubkeys/README.md +++ b/pubkeys/README.md @@ -1,42 +1,42 @@ # Verifying Electron-Cash Downloads using File Hashes PLEASE NOTE: sha256sum is known as gsha256sum in MACOS -1. Download the SHA256SUMS file to the same directory as the installer. +1. Download the SHA256SUMS file to the same directory as the installer. cd Downloads - wget https://raw.githubusercontent.com/Electron-Cash/keys-n-hashes/master/sigs-and-sums/3.1/mac/SHA256.Electron-Cash-3.1-macosx.dmg.txt + wget https://raw.githubusercontent.com/Electron-Cash/keys-n-hashes/master/sigs-and-sums/3.1/mac/SHA256.Vilight-4.0.10-macosx.dmg.txt Compare the file hashes - sha256sum -c SHA256.Electron-Cash-3.1-macosx.dmg.txt 2>&1 - -If the file hashes match, "OK" will be displayed on your screen. + sha256sum -c SHA256.Vilight-4.0.10-macosx.dmg.txt 2>&1 + +If the file hashes match, "OK" will be displayed on your screen. + + Vilight-4.0.10-macosx.dmg: OK - Electron-Cash-3.1-macosx.dmg: OK - If the hashes do not match, then there was a problem with either the download or a problem with the server. You should download the file again. ## Manual Verification of File Hashes Download the SHA256SUMS files - wget https://raw.githubusercontent.com/Electron-Cash/keys-n-hashes/master/sigs-and-sums/3.1/mac/SHA256.Electron-Cash-3.1-macosx.dmg.txt - + wget https://raw.githubusercontent.com/Electron-Cash/keys-n-hashes/master/sigs-and-sums/3.1/mac/SHA256.Vilight-4.0.10-macosx.dmg.txt + View the SHA256SUMS file - cat SHA256.Electron-Cash-3.1-macosx.dmg.txt - 670d6851908720195d58a1d94a53e77e4120e0e98f6940ee93a76f4468e2c6c5 Electron-Cash-3.1-macosx.dmg - + cat SHA256.Vilight-4.0.10-macosx.dmg.txt + 670d6851908720195d58a1d94a53e77e4120e0e98f6940ee93a76f4468e2c6c5 Vilight-4.0.10-macosx.dmg + Generate a SHA256 hash of the file you downloaded - sha256sum Electron-Cash-3.1-macosx.dmg - 670d6851908720195d58a1d94a53e77e4120e0e98f6940ee93a76f4468e2c6c5 Electron-Cash-3.1-macosx.dmg - + sha256sum Vilight-4.0.10-macosx.dmg + 670d6851908720195d58a1d94a53e77e4120e0e98f6940ee93a76f4468e2c6c5 Vilight-4.0.10-macosx.dmg + Now compare the hash that your machine calculated with the corresponding hash in the SHA256SUMS file. -When both hashes match exactly then the downloaded file is almost certainly intact. +When both hashes match exactly then the downloaded file is almost certainly intact. # Verifying Electron-Cash Downloads using GNU Privacy Guard @@ -49,7 +49,7 @@ When both hashes match exactly then the downloaded file is almost certainly inta gpg --generate-key - Choose RSA/DSA key with 4096 bits. + Choose RSA/DSA key with 4096 bits. Enter your name, email and make sure to choose a strong password. 2. Download the public key of the person/institution you want to verify. For TrueCrypt, their public key is available here. @@ -59,14 +59,14 @@ When both hashes match exactly then the downloaded file is almost certainly inta 3. Import the person’s public key into your key ring gpg --import TrueCrypt-Foundation-Public-Key.asc - + You should see output similar to - + gpg: key 21810A542031C02C: public key "Calin Culianu (NilacTheGrim) " imported gpg: Total number processed: 1 gpg: imported: 1 -4. You need to sign the person’s public key with your private key, to tell GPG that you “accept” the key. +4. You need to sign the person’s public key with your private key, to tell GPG that you “accept” the key. gpg --list-keys @@ -83,15 +83,15 @@ When both hashes match exactly then the downloaded file is almost certainly inta 6. Download the corresponding signature file - wget https://github.com/Electron-Cash/keys-n-hashes/raw/master/sigs-and-sums/3.1/mac/Electron-Cash-3.1-macosx.dmg.sig - + wget https://github.com/Electron-Cash/keys-n-hashes/raw/master/sigs-and-sums/3.1/mac/Vilight-4.0.10-macosx.dmg.sig + 7. Now you can verify the signature of the file you downloaded - gpg --verify Electron-Cash-3.1-macosx.dmg.sig - + gpg --verify Vilight-4.0.10-macosx.dmg.sig + Example of successful output - - gpg: assuming signed data in 'Electron-Cash-3.1-macosx.dmg' + + gpg: assuming signed data in 'Vilight-4.0.10-macosx.dmg' gpg: Signature made Sat 6 Jan 03:51:06 2018 AEDT gpg: using DSA key 21810A542031C02C gpg: checking the trustdb diff --git a/scripts/bip70 b/scripts/bip70 index a6b0b0291..b05f31a85 100755 --- a/scripts/bip70 +++ b/scripts/bip70 @@ -3,10 +3,10 @@ import tlslite -from electroncash.transaction import Transaction -from electroncash import paymentrequest -from electroncash import paymentrequest_pb2 as pb2 -from electroncash.address import Address +from vilight.transaction import Transaction +from vilight import paymentrequest +from vilight import paymentrequest_pb2 as pb2 +from vilight.address import Address chain_file = 'mychain.pem' cert_file = 'mycert.pem' diff --git a/scripts/block_headers b/scripts/block_headers index 64172fe2a..def00d24a 100755 --- a/scripts/block_headers +++ b/scripts/block_headers @@ -3,8 +3,8 @@ # A simple script that connects to a server and displays block headers import time -from electroncash import SimpleConfig, Network -from electroncash.util import print_msg, json_encode +from vilight import SimpleConfig, Network +from vilight.util import print_msg, json_encode # start network c = SimpleConfig() diff --git a/scripts/get_history b/scripts/get_history index 35e24bcf5..fdd08328c 100755 --- a/scripts/get_history +++ b/scripts/get_history @@ -1,9 +1,9 @@ #!/usr/bin/env python3 import sys -from electroncash import Network -from electroncash.util import json_encode, print_msg -from electroncash.address import Address +from vilight import Network +from vilight.util import json_encode, print_msg +from vilight.address import Address try: addr = sys.argv[1] diff --git a/scripts/peers b/scripts/peers index 1f66f29c2..a68e7e5be 100755 --- a/scripts/peers +++ b/scripts/peers @@ -2,8 +2,8 @@ import util -from electroncash.network import filter_protocol -from electroncash.blockchain import hash_header +from vilight.network import filter_protocol +from vilight.blockchain import hash_header peers = util.get_peers() peers = filter_protocol(peers, 's') diff --git a/scripts/servers b/scripts/servers index 944c09975..528bf5175 100755 --- a/scripts/servers +++ b/scripts/servers @@ -1,7 +1,7 @@ #!/usr/bin/env python3 -from electroncash import set_verbosity -from electroncash.network import filter_version +from vilight import set_verbosity +from vilight.network import filter_version import util, json set_verbosity(False) diff --git a/scripts/util.py b/scripts/util.py index 2c9f2d324..89abcfc3c 100644 --- a/scripts/util.py +++ b/scripts/util.py @@ -1,7 +1,7 @@ import select, time, queue -from electroncash import Connection, Interface, SimpleConfig +from vilight import Connection, Interface, SimpleConfig -from electroncash.network import parse_servers +from vilight.network import parse_servers from collections import defaultdict # electrum.util.set_verbosity(1) diff --git a/scripts/watch_address b/scripts/watch_address index 539355846..6e0ce1471 100755 --- a/scripts/watch_address +++ b/scripts/watch_address @@ -2,9 +2,9 @@ import sys import time -from electroncash import SimpleConfig, Network -from electroncash.util import print_msg, json_encode -from electroncash.address import Address +from vilight import SimpleConfig, Network +from vilight.util import print_msg, json_encode +from vilight.address import Address try: addr = Address.from_string(sys.argv[1]) diff --git a/setup.py b/setup.py index 38dc922a1..bdf8d0ac8 100755 --- a/setup.py +++ b/setup.py @@ -106,7 +106,7 @@ def run(self): if sys.platform in ('linux'): platform_package_data = { - 'electroncash_gui.qt' : [ + 'vilight_gui.qt' : [ 'data/ecsupplemental_lnx.ttf', 'data/fonts.xml' ], @@ -114,7 +114,7 @@ def run(self): if sys.platform in ('win32', 'cygwin'): platform_package_data = { - 'electroncash_gui.qt' : [ + 'vilight_gui.qt' : [ 'data/ecsupplemental_win.ttf' ], } @@ -130,33 +130,33 @@ def run(self): 'hardware': requirements_hw, }, packages=[ - 'electroncash', - 'electroncash.locale', - 'electroncash.qrreaders', - 'electroncash.utils', - 'electroncash_gui', - 'electroncash_gui.qt', - 'electroncash_gui.qt.qrreader', - 'electroncash_gui.qt.utils', - 'electroncash_plugins', - 'electroncash_plugins.audio_modem', - 'electroncash_plugins.cosigner_pool', - 'electroncash_plugins.email_requests', - 'electroncash_plugins.hw_wallet', - 'electroncash_plugins.keepkey', - 'electroncash_plugins.labels', - 'electroncash_plugins.ledger', - 'electroncash_plugins.trezor', - 'electroncash_plugins.digitalbitbox', - 'electroncash_plugins.virtualkeyboard', + 'vilight', + 'vilight.locale', + 'vilight.qrreaders', + 'vilight.utils', + 'vilight_gui', + 'vilight_gui.qt', + 'vilight_gui.qt.qrreader', + 'vilight_gui.qt.utils', + 'vilight_plugins', + 'vilight_plugins.audio_modem', + 'vilight_plugins.cosigner_pool', + 'vilight_plugins.email_requests', + 'vilight_plugins.hw_wallet', + 'vilight_plugins.keepkey', + 'vilight_plugins.labels', + 'vilight_plugins.ledger', + 'vilight_plugins.trezor', + 'vilight_plugins.digitalbitbox', + 'vilight_plugins.virtualkeyboard', ], package_dir={ - 'electroncash': 'lib', - 'electroncash_gui': 'gui', - 'electroncash_plugins': 'plugins', + 'vilight': 'lib', + 'vilight_gui': 'gui', + 'vilight_plugins': 'plugins', }, package_data={ - 'electroncash': [ + 'vilight': [ 'servers.json', 'servers_testnet.json', 'currencies.json', @@ -164,9 +164,9 @@ def run(self): 'wordlist/*.txt', 'libsecp256k1*', 'libzbar*', - 'locale/*/LC_MESSAGES/electron-cash.mo', + 'locale/*/LC_MESSAGES/vilight.mo', ], - 'electroncash_plugins.shuffle' : [ + 'vilight_plugins.shuffle' : [ 'servers.json', 'protobuf/*.proto' ], diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 1c1699229..41449da09 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,19 +1,19 @@ -name: electron-cash +name: vilight version: master -summary: Bitcoin Cash thin client +summary: Vitae thin client description: | - Lightweight Bitcoin Cash client + Lightweight Vitae client grade: devel # must be 'stable' to release into candidate/stable channels confinement: strict apps: - electron-cash: - command: desktop-launch electron-cash + vilight: + command: desktop-launch vilight plugs: [network, network-bind, x11, unity7] parts: - electron-cash: + vilight: source: . plugin: python python-version: python3 diff --git a/vilight b/vilight index 6712deabb..0eed17318 100755 --- a/vilight +++ b/vilight @@ -4,7 +4,7 @@ # Electrum - lightweight Bitcoin client # Copyright (C) 2011 thomasv@gitorious # -# Electron Cash - lightweight Bitcoin Cash client +# Vilight - lightweight Vitae client # Copyright (C) 2017-2019 The Electron Cash Developers # # Permission is hereby granted, free of charge, to any person @@ -91,28 +91,28 @@ def check_imports(): if not is_android: # Avoid unnecessarily slowing down app startup. check_imports() -# load local lib etc modules as electroncash* +# load local lib etc modules as vilight* if is_local: import imp - imp.load_module('electroncash', *imp.find_module('lib')) - imp.load_module('electroncash_gui', *imp.find_module('gui')) - imp.load_module('electroncash_plugins', *imp.find_module('plugins')) - -from electroncash import bitcoin, util -from electroncash import SimpleConfig, Network -from electroncash import networks -from electroncash.wallet import Wallet, ImportedPrivkeyWallet, ImportedAddressWallet -from electroncash.storage import WalletStorage -from electroncash.util import (print_msg, print_stderr, json_encode, json_decode, + imp.load_module('vilight', *imp.find_module('lib')) + imp.load_module('vilight_gui', *imp.find_module('gui')) + imp.load_module('vilight_plugins', *imp.find_module('plugins')) + +from vilight import bitcoin, util +from vilight import SimpleConfig, Network +from vilight import networks +from vilight.wallet import Wallet, ImportedPrivkeyWallet, ImportedAddressWallet +from vilight.storage import WalletStorage +from vilight.util import (print_msg, print_stderr, json_encode, json_decode, set_verbosity, InvalidPassword) -from electroncash.i18n import _ -from electroncash.commands import get_parser, known_commands, Commands, config_variables -from electroncash import daemon -from electroncash import keystore -from electroncash.mnemonic import Mnemonic -from electroncash.winconsole import create_or_attach_console # Import ok on other platforms, won't be called. -import electroncash_plugins -import electroncash.web as web +from vilight.i18n import _ +from vilight.commands import get_parser, known_commands, Commands, config_variables +from vilight import daemon +from vilight import keystore +from vilight.mnemonic import Mnemonic +from vilight.winconsole import create_or_attach_console # Import ok on other platforms, won't be called. +import vilight_plugins +import vilight.web as web # get password routine def prompt_password(prompt, confirm=True): @@ -303,7 +303,7 @@ def run_offline_command(config, config_options): return result def init_plugins(config, gui_name): - from electroncash.plugins import Plugins + from vilight.plugins import Plugins return Plugins(config, gui_name) @@ -419,7 +419,7 @@ if __name__ == '__main__': d = daemon.Daemon(config, fd, False) d.start() if config.get('websocket_server'): - from electroncash import websockets + from vilight import websockets websockets.WebSocketServer(config, d.network).start() if config.get('requests_dir'): path = os.path.join(config.get('requests_dir'), 'index.html')